Local persistent memory for Claude Code that stores, consolidates, and retrieves project context in a SQLite database.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent — or use 1-click editor setup below.
The install command below didn't complete successfully in our automated test.
uvx zikkaronDownloading tokenizers (3.2MiB) Downloading nvidia-cudnn-cu13 (527.5MiB) Downloading nvidia-cublas (403.5MiB) Downloading triton (236.5MiB) Downloading nvidia-nccl-cu13 (206.0MiB) Downloading transformers (11.7MiB) Downloading sympy (6.0MiB) Downloading networkx (2.0MiB) Downloading nvidia-cuda-runtime (2.1MiB) Downloading scipy (33.7MiB) Downloading nvidia-cusparse (139.2MiB) Downloading nvidia-curand (56.8MiB) Downloading numpy (16.1MiB) Downloading nvidia-cuda-cupti (10.2MiB) Downloading scik
This is an experimental automated check and can have false negatives — missing environment variables, a slow cold install, etc. It doesn’t necessarily mean something’s wrong. Last checked 7d ago.
💡 Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
Inspect callable tools, capabilities, and parameters exposed to AI agents by Zikkaron.
Zikkaron (זיכרון) is Hebrew for "memory."
Your AI forgets you every time you close the tab. Every architecture decision you explained, every debugging rabbit hole you went down together, every "remember, we're using Postgres not SQLite" correction. Gone. You start the next session a stranger to your own tools.
Zikkaron is a persistent memory engine for Claude Code built on computational neuroscience. It remembers what you worked on, how you think, what you decided and why. Not as a dumb text dump that gets shoved into context, but as a living memory system that consolidates, forgets intelligently, and reconstructs the right context at the right time.
26 subsystems. 24 MCP tools. Runs entirely on your machine. One SQLite file.
Add to your Claude Code config:
Tell Claude how to use it. Drop this in your global ~/.claude/CLAUDE.md (your home directory, not per-project):
Or just let Zikkaron handle it. On every startup, it automatically syncs ~/.claude/CLAUDE.md with the latest instructions via sync_instructions. You set it up once and never think about it again.
Monday. You spend an hour debugging a nasty auth token race condition. Claude helps you trace it to a TTL mismatch between Redis and your JWT config. You fix it. Claude stores the memory.
Thursday. A user reports intermittent logouts. You open Claude Code in the same project. Before you even describe the bug, Claude recalls the Redis TTL fix from Monday, checks if it's related, and asks whether the middleware you added is handling the edge case where Redis restarts mid-session.
That's the difference. Not "here's your conversation history." Real recall. The kind where your tools understand the shape of what you've been building, not just the words you typed last time.
We tested Zikkaron against LoCoMo (Maharana et al., ACL 2024), the standard benchmark for long conversation memory. 10 conversations, 1,986 questions, everything from simple factual lookups to multi-hop reasoning to adversarial trick questions designed to trip you up.
| Zikkaron | What it means | |
|---|---|---|
| Recall@10 | 86.8% | The right memory shows up in the top 10 nearly 9 times out of 10 |
| MRR | 0.708 | The correct answer is usually the first or second result |
| Single-hop MRR | 0.757 | Factual questions, almost always nails it on the first try |
| Temporal MRR | 0.712 | "When did X happen?" queries, strong time awareness |
The thing is, there's no LLM running at query time. No API calls. No billion parameter models. Just a 22MB embedding model, a SQLite file, and a bunch of neuroscience algorithms doing the heavy lifting. Most systems that hit numbers like these need GPT-4 in the loop. Zikkaron gets there with Hopfield energy scoring, spreading activation, and a cross-encoder reranker.
BEAM (Tavakoli et al., ICLR 2026) is the hardest long-term memory benchmark that exists. 10 conversations, each spanning 10 million tokens. 200 probing questions across 10 memory abilities, including three that no prior benchmark tests: contradiction resolution, event ordering, and instruction following.
Every system in the paper collapses at this scale. The best result reported (the LIGHT framework running on Llama-4-Maverick) scores 0.266. Most abilities drop to near-zero at 10 million tokens. Context-window approaches cannot fit it. RAG approaches drown in noise.
Zikkaron scores 0.404 overall, a 52% improvement over the best system in the ICLR 2026 paper.
| Ability | Zikkaron | LIGHT (best) | What happened |
|---|---|---|---|
| Instruction following | 0.750 | 0.500 | +50%. Claude Opus reads well even from imperfect retrieval |
| Information extraction | 0.650 | 0.375 | +73%. Specific facts retrieved from 10K memories |
| Knowledge update | 0.650 | 0.375 | +73%. Heat decay surfaces the newest version of a fact |
| Preference following | 0.642 | 0.483 | +33%. User preferences tracked across sessions |
| Abstention | 0.450 | 0.750 | Knowing what you don't know is hard without a scratchpad |
| Summarization | 0.216 | 0.277 | Summarization needs many source passages at once |
| Multi-session reasoning | 0.195 | 0.135 | +44%. Connecting evidence across distant turns |
| Temporal reasoning | 0.175 | 0.075 | +133%. When did X happen relative to Y? |
| Contradiction resolution | 0.163 | 0.050 | +226%. Detecting conflicting statements thousands of turns apart |
| Event ordering | 0.150 | 0.266 | Retrieval finds events but chronological sequencing is hard |
| Overall | 0.404 | 0.266 | +52% |
Seven of ten abilities beat the published state of the art. The biggest gains are on exactly the abilities where structured memory should help most: contradiction resolution (+226%), temporal reasoning (+133%), and knowledge updates (+73%). These are the abilities where every system in the paper scores near zero, because context-window approaches have no mechanism for tracking how facts change or when events occurred. Zikkaron's thermodynamic decay, reconsolidation, and temporal metadata handle these natively.
The three abilities where LIGHT wins (abstention, event ordering, and summarization) reflect genuine limitations. Abstention requires recognizing when information is absent, which benefits from LIGHT's scratchpad that explicitly tracks what has been discussed. Event ordering requires perfect chronological sequencing, not just retrieving the right events. Summarization requires retrieving many source passages simultaneously, and our retrieval budget covers only a fraction of the relevant content.
One important caveat: the BEAM paper's baselines use GPT-4.1-nano as the reader model. We use Claude Opus 4.6, which is substantially more capable. The instruction-following result (0.750 with a retrieval MRR of just 0.086) demonstrates that reader quality contributes to QA scores independently of retrieval quality. Our retrieval metrics (MRR 0.422, Recall@10 0.353) are model-independent and directly comparable to the paper's baselines.
Benchmark configuration: BEAM-10M split, 10 conversations, 200 questions, pair-chunk ingestion matching the paper's RAG mode, per-rubric binary nugget scoring with int() cast matching the paper's evaluation code, Kendall tau-b via scipy for event ordering, fresh database per conversation.
Here's a problem nobody talks about. Claude Code has a 200k/1M token context window. During long sessions, when that window fills up, it compacts: summarizes older messages, strips tool outputs, paraphrases your instructions. Important nuance evaporates. Decisions you anchored early in the conversation dissolve into vague summaries.
Hippocampal Replay fixes this. Named after the neuroscience phenomenon where your brain replays important experiences during sleep to consolidate them into long-term memory, it treats context compaction as the "sleep" and replays what matters when Claude "wakes up."
How it works:
Before compaction hits, a hook fires. Zikkaron drains your active context: what you were working on, which files were open, what decisions you'd made, what errors were unresolved. It stores all of this as a checkpoint.
After compaction, a second hook fires. Zikkaron reconstructs your context intelligently. Not by dumping everything back in, but by assembling the right pieces: your latest checkpoint, any facts you'd anchored as critical, the hottest project memories, and predictions about what you'll need next based on your usage patterns.
You can also be explicit about what matters:
Anchored memories get maximum protection. They always survive compaction, no matter what.
One-time setup per project:
After that, everything is automatic. You don't think about it. You don't call anything manually. The hooks fire, the context drains, the context restores. Your long sessions just... work.
Previous versions still had gaps. You'd work on something for an hour, making incremental progress, and Zikkaron's write gate would block half of it because each small step looked "unsurprising" relative to the last. You'd make a critical architecture decision and it would slowly decay into a gist. You'd come back to a new session and Claude would have no idea what you were just doing.
v1.3.0 fixes all of this:
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/zikkaron)<a href="https://allmcps.com/mcp/zikkaron"><img src="https://allmcps.com/api/badge/zikkaron?style=directory" alt="Zikkaron on AllMCPs" /></a>