agent-recall: Local SQLite MCP for Persistent Claude Code Memory

Solving Claude Code's Session Memory Problem
Claude Code forgets everything between sessions, requiring users to re-explain team details, decisions, and blockers. While CLAUDE.md works for single projects, it becomes messy across multiple projects with conflicting context.
agent-recall addresses this with a local SQLite-based memory layer that persists across sessions without cloud dependencies.
How It Works
- Single SQLite file in WAL mode - no cloud, no vector DB, nothing leaves your machine
- 9 MCP tools that let Claude save entities, relationships, and observations as you work
- At session start, an LLM generates a structured briefing covering key people, recent decisions, and active blockers instead of dumping raw data
- Versioned slot history - old values get archived, not overwritten
Key Features
Compared to claude-memory-mcp (which is great for free-form memories), agent-recall offers:
- Entity-relation model for structured data
- Scoped visibility to control which project sees what context
- LLM-summarized briefings rather than loading raw facts into context
Setup
Installation is straightforward:
pip install 'agent-recall[mcp]'Then add the server to your .mcp.json configuration file. The tool is MIT licensed with 321 tests and was developed from running approximately 30 agents daily for work.
The author raises an interesting question about implementation approaches: are LLM-summarized briefings actually better than loading raw facts into context? This reflects ongoing experimentation in the MCP ecosystem about optimal memory management strategies.
📖 Read the full source: r/ClaudeAI
👀 See Also

Agent-factory: A Claude Code Plugin for Persistent AI Sub-Agent Teams
Agent-factory is a Claude Code plugin that creates persistent sub-agent teams with distinct personalities and file-based memory. It scaffolds 2-5 agents per project through a conversational interview process, with each agent having specific roles like code review, tech debt tracking, or strategy.

Marketing Wisdom MCP: Free Semantic Search for Startup Insights
A free MCP server provides semantic search across 6,700 insights from 1,040 episodes of My First Million and Starter Story podcasts. It offers four tools for querying founder wisdom on growth, marketing, and business strategies.

Claude's Canva integration: a practical workflow for design generation
Claude's Canva connector exports editable Canva projects with structured layouts, not flat images. The post details a workflow from prompt to finished carousel in 12-15 minutes, including setup, high-fidelity mode, and honest limitations.

Keep My Claw: Backup Service for OpenClaw Workspaces
Keep My Claw is a backup service that encrypts OpenClaw workspace data locally before uploading to Cloudflare R2. It handles memory files, cron jobs, skills, credentials, and config snapshots with scheduled backups and one-command restores.