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

Built AI Forensic Accounting Software with My Dad — CaseTrail Automates Financial Fraud Detection
A father-son team built CaseTrail, an AI-powered forensic accounting tool that ingests bank statements and identifies anomalies. The blog details integration with LLMs for transaction analysis.

Skill Bill: A Markdown-Based Governance Framework for AI Coding Skills
A developer built Skill Bill, a framework of 44 Markdown-based AI skills for Kotlin, Android/KMP, PHP, and Go that addresses prompt management problems like naming drift and duplicated logic. It includes orchestrator skills like 'feature-implement' that chain 10-12 skill invocations and syncs to Claude Code, Copilot, GLM, and Codex.

Freestyle Launches Sandboxes for AI Coding Agents with Live Forking
Freestyle provides cloud sandboxes for AI coding agents that start in ~500ms and feature live forking with <400ms pause, allowing full VM clones including memory state. They run full Debian with hardware virtualization on bare metal infrastructure.

llm-idle-timeout Fires at 2 Minutes on N100/WSL2 Despite timeoutSeconds Setting
A user reports that the idle watchdog in OpenClaw fires after 2 minutes on N100/WSL2 hardware, ignoring the timeoutSeconds=300 setting, due to slow gateway startup (45+ seconds) and no configurable noOutputTimeoutMs.