mcp-ai-brain
Persistent memory for AI coding agents with local-first, zero-cost, privacy-first SQLite/FTS5 storage and biological-inspired decay.
README
🧠 mcp-ai-brain
Persistent memory for AI coding agents. Local-first. Zero API costs. Works everywhere.
AI agents forget everything between sessions. mcp-ai-brain fixes that.
A Model Context Protocol (MCP) server that gives your AI agent a persistent, searchable, privacy-first memory — powered by SQLite, FTS5, and biological-inspired decay.
✨ Features
| Feature | Description |
|---|---|
| 🔍 Hybrid Search | Keyword (FTS5) + local vector embeddings via all-MiniLM-L6-v2, fused with RRF |
| 🧬 Memory Decay | Ebbinghaus-inspired forgetting curve — unused memories lose relevance, critical ones never fade |
| 📂 Project Scoping | Memories are scoped to projects — your web app context stays separate from your CLI tool context |
| 🔒 Privacy-First | Everything stays on your machine. No cloud. No API calls. Your brain.db never leaves ~/.mcp-ai-brain/ |
| ⚡ Zero Cost | No embeddings API needed. Runs all-MiniLM-L6-v2 locally via @xenova/transformers (~25MB, downloads once) |
| 🤖 Auto-Learning | brain_session_end extracts facts automatically from your session summary. No manual remember calls needed |
| 🎯 Proactive Context | brain_session_start_smart detects your workspace and loads the right memories automatically |
| 🌐 Dashboard | Built-in web dashboard at localhost:3333 — view, search, edit memories in real-time |
| 🔌 Universal | Works with Claude Desktop, Cursor, Windsurf, Cline, Antigravity, and any MCP-compatible tool |
🚀 Quick Start
Install
npm install -g mcp-ai-brain
Configure your AI tool
Add to your MCP config (e.g., claude_desktop_config.json, .cursor/mcp.json):
{
"mcpServers": {
"brain": {
"command": "mcp-ai-brain"
}
}
}
That's it. Your AI now has a brain. 🧠
🛠️ Tools
brain_remember
Store a memory. Supports categorization, tagging, importance levels, and project scoping.
Categories: fact | decision | preference | architecture | bug | config | pattern | incident | workflow
Importance: critical (never decays) | high | normal | low
brain_recall
Retrieve memories by project, category, or importance — without needing a search query.
brain_search
Hybrid search using keyword matching (FTS5) + local vector embeddings (all-MiniLM-L6-v2). Results fused with Reciprocal Rank Fusion — semantic similarity works out of the box once the model downloads (~25MB, one-time).
brain_forget
Soft-delete a memory. It's excluded from search but can be restored.
brain_session_start
Start a session — loads top memories for your project, runs decay maintenance, and returns context.
brain_session_end
End a session — records what happened and for how long.
brain_projects_*
Manage the project registry (list, upsert, get, delete).
brain_stats
Brain diagnostics — memory counts, category breakdown, database path, vector status.
🧬 How Decay Works
Memories follow a biological forgetting curve:
- Grace Period (7 days): No decay. Fresh memories stay at full strength.
- Active Decay: Score decreases based on importance weight and time since last access.
- Access Resets Clock: Every time a memory is recalled or found in search, its decay resets.
- Critical = Permanent: Set importance to
criticaland the memory never decays. - Decayed ≠ Deleted: Decayed memories can be restored with
brain_restore.
⚙️ Configuration
| Environment Variable | Default | Description |
|---|---|---|
BRAIN_DB_PATH |
~/.mcp-ai-brain/brain.db |
Custom database file location |
🏗️ Architecture
┌─────────────────────────────────┐
│ AI Agent (Claude, etc.) │
│ via MCP Protocol │
└────────────┬────────────────────┘
│ stdio
┌────────────▼────────────────────┐
│ mcp-ai-brain server │
│ ┌──────────┐ ┌─────────────┐ │
│ │ FTS5 │ │ MiniLM-L6v2 │ │
│ │ (keyword)│ │ (local vec) │ │
│ └────┬─────┘ └──────┬──────┘ │
│ │ RRF Fusion │ │
│ └───────┬────────┘ │
│ ┌─────▼──────┐ │
│ │ SQLite DB │ │
│ │ brain.db │ │
│ └────────────┘ │
│ ┌──────────────────────────┐ │
│ │ Decay Engine │ │
│ │ (Ebbinghaus curve) │ │
│ └──────────────────────────┘ │
│ ┌──────────────────────────┐ │
│ │ Auto-Learning (v1.1) │ │
│ │ Session summary → facts │ │
│ └──────────────────────────┘ │
└─────────────────────────────────┘
📊 What Your AI Agent Should Remember
| Category | Example |
|---|---|
decision |
"We chose NextJS over Remix because of Vercel deployment simplicity" |
architecture |
"Auth flow: Firebase Auth → Custom Claims → Middleware guard" |
config |
"Cron schedule: */10 * * * * (every 10 min, Vercel 300s timeout)" |
bug |
"Safari iOS AudioContext requires user gesture — fixed with click handler" |
pattern |
"All Firestore writes use transactions for multi-tenant isolation" |
preference |
"User prefers dark mode UI with Inter font family" |
incident |
"2024-01-15: Stripe webhook double-firing caused duplicate charges" |
🗺️ Roadmap
- [x] v1.0 — Core memory + keyword search (FTS5) + Ebbinghaus decay engine
- [x] v1.1 — Local embeddings (
all-MiniLM-L6-v2via@xenova/transformers) + Auto-Learning + Proactive Context + Web Dashboard - [ ] v1.2 — Multi-agent support + relationship graph between memories
- [ ] v2.0 — Proactive suggestions + memory consolidation + export/import
🤝 Contributing
PRs welcome! See CONTRIBUTING.md for guidelines.
📄 License
MIT — see LICENSE.
🌍 Built With This
Real-world projects powered by mcp-ai-brain — demonstrating persistent AI memory in production:
| Project | What It Does |
|---|---|
| 🎤 Ace Your Interviews | AI-powered real-time voice mock interviews — the only tool that simulates a real phone screen |
| 📍 GeoQuote.ai | Instant contractor quoting platform — real-time pricing intelligence for homeowners |
| 🎄 The Funny Christmas Shop | Hilarious holiday t-shirts with AI-generated designs, updated daily |
| 📝 ChairFull.org | Office chair reviews and buying guides — AI-researched, human-curated |
| 💰 VaultNest.org | Personal finance guides — savings, investing, and financial independence |
| 🚛 FleetShield.org | Commercial trucking insurance guides for fleet owners |
| ✈️ DutyPilot.org | Import duty and customs tariff guides for international shoppers |
| 📖 ManualJPro.org | Product manual library — user guides and instruction manuals |
| 🛒 Should I Buy It | AI buying-intent analysis — know before you spend |
Want your project listed here? Open a PR and add it to this table.
👤 About the Author
Built and maintained by Pravin Nawkar — a developer building AI-powered SaaS tools and content platforms.
<p align="center"> <b>Built with ❤️ to give AI agents the memory they deserve.</b> </p>
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。