Hosted agent memory that keeps an audit trail. Three tools β commitmem, recall, status β where each write carries provenance (which run, tool, or operator produced it), contradictions with prior state surface as inspectable changes rather than silent overwrites, and a bad run is recovered from a snapshot instead of repaired by hand. pip install -U bilinc
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
π‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
Hosted memory infrastructure for AI 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.3.0 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.
Frozen regression receipt β LongMemEval-s cleaned retrieval fixture, 500 questions: Hit@5 98.0%, NDCG@5 0.913, no LLM reranker, no paid API. This is an isolated retrieval guardrail, not a current hosted SLA, end-to-end agent score, or competitor ranking β see Benchmark receipt for the full scope and qualification.
Bilinc is the state layer between an agent and the things it must remember. It keeps memory writes attributable, correctable, and recoverable instead of treating retrieval as a bag of similar text.
| If your agent needs to... | Bilinc gives it... |
|---|---|
| Recall a decision before acting | Key-scoped recall with explicit profiles and evidence metadata |
| Correct a bad memory | revise, contradiction-aware state, and provenance-preserving updates |
| Recover from an unsafe run | Snapshots, diffs, and confirmed rollback |
| Work across any MCP-compatible agent | A Python SDK, CLI, and stdio MCP adapter |
The fastest path is pip install -U bilinc, bilinc login, then bilinc quicktest against Bilinc Cloud.
| You want... | Use... |
|---|---|
| A hosted memory API for an agent or MCP client | The public cloud-only package from PyPI |
| Local StatePlane, SQLite/PostgreSQL, benchmarks, or internals | This repository and the architecture guide |
| A hosted MCP connection | The MCP setup guide |
The public package is intentionally smaller than this repository. It does not bundle the internal StatePlane or local storage runtime.
bilinc login opens your browser. Sign in with Google, GitHub, or email (free,
no card required) and approve this computer; the CLI saves its own API key with
owner-only permissions. The key never appears in a URL or your terminal.
bilinc quicktest then performs one hosted commit, one hosted recall, and one
Cloud status check.
bilinc login --device
prints a short code to approve from any browser.bilinc login --api-key bil_live_..., or set BILINC_API_KEY.To reproduce this release exactly:
If you prefer a browser guide, open https://bilinc.space/install and follow the same three-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.
Eight tools β the core memory lifecycle, and nothing else:
| Tool | What it does |
|---|---|
commit_mem | Write durable agent state. Each write carries provenance β which run, tool, or operator produced it β and returns a version for optimistic concurrency. |
recall | Retrieve prior context and decisions before acting. profile selects retrieval quality; smart retrieval is that argument, not a separate tool. |
revise | Deliberately correct something already known. It never creates, so a correction stays distinguishable from an accidental overwrite. |
forget | Destructive. Remove obsolete state from active recall. A reason is required and is audited; the deleted value is never returned. |
status | Report the authenticated workspace, plan, capabilities, recall profiles, limits, and usage. Never billed. |
snapshot | Checkpoint a project before risky work, or list existing checkpoints. |
diff | Compare a checkpoint against another checkpoint or current state. Values are redacted by default. |
rollback | Destructive in execute mode. Restore a checkpoint through a free preview plus an explicitly confirmed execute. |
Operator and debug tooling β health probes, benchmarks, export/import, workspace replay β stays local-only, as do the epistemic read tools for claims, contradictions, and graph queries. The hosted adapter does not bundle local runtime internals.
Documented client setups: Claude Code Β· Codex Β· Cursor Β· any MCP client
For server, CI, and hosted agent runtimes, store the key as BILINC_API_KEY.
Rollback is two stages. Execute takes the token from the preview and never prompts interactively, so it stays safe inside automation:
Useful first-run commands:
| Endpoint | Notes |
|---|---|
GET /api/cloud/health | Public service health. No key, no billing. |
GET /api/cloud/status | Authenticated capabilities for one key. Never billed. |
POST /api/cloud/memory/commit | Write. |
POST /api/cloud/memory/recall | Read. |
POST /api/cloud/memory/revise | Replace an existing memory. |
POST /api/cloud/memory/forget | Destructive. Reason required. |
GET /api/cloud/memory/snapshots | List checkpoints. Free. |
POST /api/cloud/memory/snapshots | Create a checkpoint. |
POST /api/cloud/memory/diff | Compare checkpoints. Free. |
POST /api/cloud/memory/rollback/preview | Free. Mints a confirmation token. |
POST /api/cloud/memory/rollback | Destructive. Requires that token. |
Factual signals from GitHub, npm, and our automated checks β not a rating.
No reviews yet β be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/atakanelik34-bilinc)<a href="https://allmcps.com/mcp/atakanelik34-bilinc"><img src="https://allmcps.com/api/badge/atakanelik34-bilinc?style=directory" alt="Bilinc on AllMCPs" /></a>