A self-improving, verifiable memory layer for AI coding agents.
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.
A self-improving, verifiable memory layer for AI coding agents.
A self-improving, verifiable memory layer for AI coding agents.
cogmem learns how you work across sessions so your agent gets more accurate and more autonomous over time: it stops repeating mistakes, keeps a live model of each project, and surfaces the right lesson at the right moment. Every memory is cryptographically signed and tamper-evident, so a poisoned or altered memory can be detected and rejected before it ever steers the agent.
Developed by WritersLogic β local-first recall; your memory and identity key stay on your machine (see Privacy).
pip install cogmem gives you the cogmem CLI and the MCP server (cogmem mcp, or uvx cogmem mcp on demand) β the verifiable-memory tools need only the core install. Add the [recall] extra for local semantic recall, then run cogmem init to wire the full learning loop (the SessionStart/UserPromptSubmit/Stop hooks and the index) into Claude Code. cogmem init is idempotent; re-run it any time.
The clone installer does everything pip install + cogmem init does, plus sets up the warm recall daemon (launchd/systemd) as a managed service:
Or in one line:
install.sh is idempotent β run it again any time to upgrade in place. It sets up
the code under ~/.claude/cogmem, a self-contained virtualenv with dependencies,
the cogmem CLI on your PATH, the Claude Code hooks, and a warm recall daemon
(a launchd agent on macOS, a systemd --user service on Linux). Requires
Python 3.12+; semantic recall runs on a local model (fastembed, no external
API). Pass --no-daemon or --no-hooks to skip those steps; set COGMEM_HOME
to install elsewhere β the CLI, engine, and hooks all resolve it at runtime, so
a non-default install keeps its memory and identity fully self-contained.
Set COGMEM_HOME to place cogmem somewhere other than the default
~/.claude/cogmem:
Or with the one-liner:
The installer copies the code, creates the virtualenv, and symlinks the CLI to
~/.local/bin/cogmem (or wherever COGMEM_BIN points).
Set COGMEM_BIN to control where the cogmem CLI symlink is placed:
If COGMEM_BIN is not on your PATH, the installer prints a warning. You can
always invoke cogmem directly from $COGMEM_HOME/cogmem.
At runtime the CLI and engine read COGMEM_HOME from the environment. When it is
unset they fall back to ~/.claude/cogmem. All runtime data lives under the
vault/ subdirectory:
| Path | Purpose |
|---|---|
$COGMEM_HOME/vault/identity/agent.key | Ed25519 private key (agent identity, did:key) |
$COGMEM_HOME/vault/credentials/ | W3C Verifiable Credential storage |
$COGMEM_HOME/vault/rules/ | Layer-A (always-load) and Layer-B (recall) rules |
$COGMEM_HOME/vault/provenance/log.jsonl | Append-only hash-chained transparency log |
$COGMEM_HOME/vault/provenance/statements/ | COSE_Sign1 SCITT signed statements |
$COGMEM_HOME/engine/.venv/ | Python virtualenv with dependencies |
$COGMEM_HOME/hooks/ | Claude Code hook scripts |
The identity key is generated on first run (via cogmem status or any engine
operation) and persisted at $COGMEM_HOME/vault/identity/agent.key. The
corresponding did:key is derived from the Ed25519 public key. Moving or
reinstalling cogmem to a new COGMEM_HOME creates a fresh identity unless you
migrate the vault/ directory.
The standard MCP client configuration works regardless of COGMEM_HOME because
the cogmem CLI resolves the environment variable at runtime:
If the CLI is not on your PATH, use the full path:
Or prefix with COGMEM_HOME in a shell wrapper:
Run cogmem as an MCP server and connect any MCP-compatible client:
Eight tools are exposed: recall, note, status, verify, receipt, tree_head, progress, review_pending, plus read-only resources (the live user model and per-project state).
install.sh wires cogmem into Claude Code automatically (idempotently merged into
~/.claude/settings.json) β no manual invocation required. Five hooks make the
memory loop run in the background:
| Event | Hook | What it does |
|---|---|---|
SessionStart | cogmem-activate.sh | injects promoted always-load (Layer-A) rules + the self-check |
UserPromptSubmit | cogmem-recall.sh | semantic Layer-B recall for the current prompt |
PreToolUse(Bash) | cogmem-guard.sh | intercepts known mistakes at the tool-call boundary before they happen |
PostToolUse(Edit|Write) | cogmem-context.sh | tracks which files the session is actively editing |
Stop | cogmem-capture.sh | captures the session into memory (acquisition + consolidation) |
Every hook is strictly fail-open: any error, timeout, or cold daemon injects
nothing and never blocks your prompt. The scripts live in ~/.claude/cogmem/hooks/;
re-run install.sh (or ./install.sh --no-daemon) to refresh the wiring.
Chat-memory systems (Mem0, Letta, Zep) store and retrieve facts. cogmem is built for coding agents and goes further on three axes:
It learns from outcomes. A feedback loop scores whether a recalled lesson actually helped, refines rules that prove wrong, and retires ones that mislead.
It models its own failure modes. cogmem tracks where the agent tends to go wrong in your work and intercepts known mistakes at the tool-call boundary β before they happen, not afterward.
Its memory is verifiable. Each memory is a W3C Verifiable Credential signed by the agent's did:key, recorded in a tamper-evident, SCITT-style transparency log. Agent memory is an attack surface; cogmem makes it auditable and poison-resistant.
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/cogmem)<a href="https://allmcps.com/mcp/cogmem"><img src="https://allmcps.com/api/badge/cogmem?style=directory" alt="Cogmem on AllMCPs" /></a>