mindpm: A Free MCP Server for Persistent Project Memory with Claude

mindpm is a free, open-source MCP server that gives Claude persistent project memory across conversations using a local SQLite database. It was built specifically to solve the problem of re-explaining projects at the start of each Claude Code session.
What it does
mindpm provides Claude with a local SQLite database to read and write during conversations, tracking:
- Tasks (status, priority, blockers, sub-tasks)
- Decisions (what was decided, why, alternatives rejected)
- Notes (architecture, bugs, ideas, research)
- Sessions (what was done, what's next)
The next conversation picks up exactly where you left off. For example: You ask "What should I work on next?" and Claude responds: "Last session you finished the auth refactor. You have 3 high-priority tasks: rate limiting, API docs, and the webhook retry bug. Rate limiting is unblocked — start there."
Technical details
mindpm works with any MCP-compatible client, including Claude Code, Cline, and Cursor. The entire project was built using Claude Code for MCP tool definitions, SQLite schema, session handoff logic, and the built-in Kanban board UI.
Setup takes 30 seconds with this command:
claude mcp add mindpm -e MINDPM_DB_PATH=~/.mindpm/memory.db -- npx -y mindpmEverything runs locally with no cloud, accounts, or subscriptions. The built-in Kanban board is available at localhost:3131.
Source and availability
mindpm is available on GitHub and npm. The project lives in Claude's memory via mindpm itself, creating a meta development experience.
📖 Read the full source: r/ClaudeAI
👀 See Also

Improving Claude Code Sessions with claude-self-improve
Claude-self-improve is a CLI tool that enhances Claude Code's AI performance by analyzing session data and updating memory files automatically.

Hippo v0.21.0: Biologically-Inspired Memory for AI Agents with Multi-Tool Support
Hippo v0.21.0 introduces one-command setup for multiple AI coding tools including Claude Code, OpenCode, OpenClaw, Codex, Cursor, and Pi. The memory system features decay, retrieval strengthening, and consolidation with zero runtime dependencies.

LumaBrowser: Electron Browser Offloads DOM Parsing to Local LLMs for AI Agents
LumaBrowser is an Electron browser that offloads DOM parsing to local LLMs via OpenAI-compatible endpoints, helping autonomous agents avoid processing raw HTML. It uses models like Qwen 2.5 variants to identify UI elements and returns CSS selectors.

Radicle 1.8.0 Released: Decentralized Peer-to-Peer Code Forge Built on Git
Radicle 1.8.0 ships a sovereign, peer-to-peer code forge on Git with CLI, web UI, and desktop client. Repos replicate across peers using NoiseXK and a custom gossip protocol – no central server.