iai-mcp: Local daemon gives Claude persistent memory across sessions with 99% recall

A Reddit user shared iai-mcp, a local daemon they built to solve Claude's session amnesia. Since January, they've used it daily with Claude Code, and now it's open-source under MIT license.
How it works
iai-mcp captures every conversation, organizes it into three memory tiers, and feeds the right context back when you start a new session. No manual "remember this" prompts, no copy-pasting. The daemon runs locally, stores everything verbatim, runs neural embeddings locally, and encrypts at rest with AES-256. Memory consolidation happens in the background while your machine is idle.
Performance benchmarks
- Verbatim recall: above 99%
- Retrieval latency: under 100ms
- Session-start cost: under 3,000 tokens
The author reports that after five months of daily use, the system has learned their coding style, project structures, and preferences without any explicit instruction.
Get it
Source code and setup instructions are on GitHub: github.com/CodeAbra/iai-mcp. MIT licensed. Benchmark harnesses included so you can verify the numbers yourself.
If you've been annoyed by Claude forgetting context between sessions, this is worth a look. It's a single-purpose local daemon — no cloud dependencies, no API keys beyond what you already have.
📖 Read the full source: r/ClaudeAI
👀 See Also

Building syntaqlite: A SQLite DevTools Project Created with AI Assistance
Lalit Maganti built syntaqlite, a set of developer tools for SQLite, over three months using AI coding agents after wanting it for eight years. The project required parsing SQL exactly like SQLite, which involves adapting SQLite's dense C codebase with over 400 grammar rules.

Privacy-First MCP Server Directory Launches with Documented Data Handling Policies
A new directory at toolora.dev/mcp-hub lists MCP servers with documented data handling policies, including local vs hosted classification, what data each tool transmits, and whether accounts are required. The creator also provides a browser test method to verify privacy claims.

Werld: Open-Ended Artificial Life Simulation with Evolving Neural Networks
Werld is a real-time artificial life simulation where agents with NEAT neural networks evolve their own neural architecture, sensory processing, and behaviors without hardcoded rules or reward functions. The simulation starts with 30 agents on a Watts-Strogatz small-world graph with 64 sensory channels, 7 continuous motor functions, and 29 heritable genome traits.

Nutrition MCP Server Built with Claude Code for Food Diary Export
A developer built a nutrition MCP server using Claude Code after commercial apps blocked data export, creating a tool that logs meals via Claude, generates summaries, and exports to Excel without switching apps.