iai-mcp: A local daemon for persistent OpenClaw memory across sessions

The recurring pain of starting a fresh OpenClaw session with zero context prompted one developer to build iai-mcp — a local daemon that persists conversation memory across sessions. Five months of daily use later, it's been open-sourced under MIT license.
How it works
- Three memory tiers: organizes captured conversations by recency and relevance, consolidating in the background when the machine is idle.
- Local neural embeddings: all processing happens on-device; no data sent externally.
- AES-256 encryption: data at rest is encrypted.
- Automatic context injection: on new session start, the relevant memory is fed as context — no need to manually ask OpenClaw to remember anything.
Performance numbers
- Verbatim recall above 99%
- Retrieval latency under 100ms
- Session-start token cost under 3,000 tokens
Real usage
The author has been running iai-mcp since January and reports that the system has learned coding style, project structures, and preferences without explicit instructions. The repository includes a benchmark harness to verify the numbers yourself.
Repository: https://github.com/CodeAbra/iai-mcp
📖 Read the full source: r/clawdbot
👀 See Also

mcp-india-stack: Open-source MCP server for Indian financial APIs
mcp-india-stack is an open-source MCP server that provides Claude with native access to seven Indian financial and government API tools, including GSTIN validation, IFSC lookup, and PAN validation. It requires zero authentication, is offline-first, and is available via pip install.

Introducing Aionic Anthology: A Framework for Structuring Claude's AI Tasks
The Aionic Anthology framework organizes Claude's AI tasks by separating context into categories and adding a risk evaluation system to improve task execution.

Voxray-AI: Production Go Backend for Real-Time Voice Agent Pipelines
Voxray-AI is a Go backend that chains Whisper → any LLM → TTS into a real-time voice agent pipeline with WebSocket and WebRTC support. It's built for production-grade servers and high-concurrency voice workloads with configurable providers for STT, LLM, and TTS layers.

VT Code: Open-Source Rust TUI Coding Agent with Multi-Provider Support and Agent Skills
VT Code is a Rust-based terminal UI (TUI) coding agent supporting Anthropic, OpenAI, Gemini, and Codex, with local inference via LM Studio and Ollama. It includes Agent Skills, Model Context Protocol, and Agent Client Protocol.