Server data from the Official MCP Registry
Hosted agent memory with provenance, contradiction surfacing, and snapshot rollback.
Hosted agent memory with provenance, contradiction surfacing, and snapshot rollback.
The Bilinc MCP server is a sophisticated agent memory platform with generally sound security practices for its category. Authentication is properly enforced for HTTP transport using constant-time comparison, and the server implements rate limiting and proper logging. However, several concerns prevent a higher score: (1) the large codebase is truncated, leaving significant portions unreviewed; (2) the export/import functionality with file paths could enable unintended file access if not properly validated; (3) overly broad error handling masks the root causes of failures, complicating debugging and security incident response; (4) lack of explicit input validation helpers beyond imports suggests validation is scattered or incomplete; and (5) credentials are correctly stored in environment variables but lack explicit documentation of secure storage practices. The permissions are appropriate for a memory service that calls remote APIs. Supply chain analysis found 6 known vulnerabilities in dependencies (0 critical, 5 high severity). Package verification found 1 issue.
3 files analyzed · 15 issues found
Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.
This plugin requests these system permissions. Most are normal for its category.
Set these up before or after installing:
Environment variable: BILINC_API_KEY
Add this to your MCP configuration file:
{
"mcpServers": {
"io-github-atakanelik34-bilinc": {
"env": {
"BILINC_API_KEY": "your-bilinc-api-key-here"
},
"args": [
"bilinc"
],
"command": "uvx"
}
}
}From the project's GitHub README.
Hosted memory infrastructure for coding agents: commit, recall, and inspect agent state through one API key, with verification, provenance, and recovery around every write.
Retrieval answers "what is similar to this?". Long-running agents also need to answer "who wrote this state, was it verified, did it contradict what we already knew, and can we undo it?" — that is the layer Bilinc provides.
Bilinc 2.1.5 on PyPI is the public cloud-only package: a thin Python SDK, CLI, and MCP adapter for Bilinc Cloud. It does not ship the local StatePlane, storage backends, eval, observability, integrations, or server runtime internals.
pip install -U bilinc
bilinc start
bilinc start is the first-run guide. The activation target is simple: reach a
passing bilinc quicktest, which performs one hosted commit, one hosted recall,
and one Cloud status check.
bilinc login --api-key bil_live_...
bilinc quicktest
If you prefer a browser guide, open https://bilinc.space/install and follow the same four-step path.
Bilinc exposes a standard Model Context Protocol server over stdio, so any MCP-compatible client can connect — Claude Code, Codex, Cursor, Hermes-Agent, opencode, and others.
{
"mcpServers": {
"bilinc": {
"command": "python",
"args": ["-m", "bilinc.cloud_mcp"],
"env": { "BILINC_API_KEY": "bil_live_..." }
}
}
}
Three tools, deliberately:
| Tool | What it does |
|---|---|
commit_mem | Write durable agent state. Each write carries provenance — which run, tool, or operator produced it. |
recall | Retrieve prior context and decisions before acting. |
status | Check hosted Cloud health and account state. |
Documented client setups: Claude Code · Codex · Cursor · any MCP client
The adapter exposes hosted commit, recall, and status operations. It does not bundle local runtime internals.
from bilinc import CloudClient
client = CloudClient() # reads BILINC_API_KEY or a key saved by `bilinc login`
client.commit("agent.goal", {"ship": "reliable memory"}, memory_type="semantic")
results = client.recall("agent goal", limit=5)
status = client.status()
For server, CI, and hosted agent runtimes, store the key as BILINC_API_KEY.
bilinc status
bilinc commit --key agent.goal --value '{"ship":"reliable memory"}'
bilinc recall --query "agent goal"
bilinc doctor
Useful first-run commands:
bilinc start
bilinc login --api-key bil_live_...
bilinc quicktest
bilinc mcp install
GET https://bilinc.space/api/cloud/healthPOST https://bilinc.space/api/cloud/memory/commitPOST https://bilinc.space/api/cloud/memory/recallAuthenticated memory operations require an active Bilinc Cloud entitlement.
Archived research receipt, LongMemEval-s cleaned retrieval fixture, 500 questions: R@5 98.0%, NDCG@5 0.933, with no LLM reranker and no paid API.
This is an archived retrieval-component result — not a current hosted SLA, not an end-to-end agent score, and not a competitor ranking. Published memory-system scores use different metrics, datasets, and levels of LLM assistance, so they are not directly comparable. Present this receipt only with this scope attached.
BUSL-1.1. See LICENSE.
Be the first to review this server!
by Modelcontextprotocol · Developer Tools
Read, search, and manipulate Git repositories programmatically
by Toleno · Developer Tools
Toleno Network MCP Server — Manage your Toleno mining account with Claude AI using natural language.
by mcp-marketplace · Developer Tools
Create, build, and publish Python MCP servers to PyPI — conversationally.