mnemo
@jmeiracorbal
关于 mnemo
Persistent memory for AI coding agents. mnemo stores decisions, bugs, conventions, and discoveries across sessions in a local SQLite database.
基本信息
配置
使用下面的配置,将此服务器添加到你的 MCP 客户端。
{
"mcpServers": {
"mnemo": {
"command": "mnemo",
"args": [
"mcp",
"--tools=agent"
]
}
}
}工具
未检测到工具
工具是从 README 中自动提取的。维护者可以在 ## Tools 标题下列出工具,即可填充这部分内容。
概览
What is mnemo?
mnemo is an MCP server that provides persistent memory for AI coding agents by storing decisions, bugs, conventions, and discoveries across sessions in a local SQLite database. It integrates with Claude Code and Cursor via hooks and MCP, giving agents a continuous memory that survives across conversations.
How to use mnemo?
Install mnemo using the one-line installer (curl -sSf .../install.sh | bash), which downloads the binary, installs it to ~/.local/bin/, and runs mnemo setup automatically. For Claude Code run mnemo setup; for Cursor run mnemo setup --cursor. After setup, restart the editor and mnemo's MCP tools become available under the mcp__mnemo__* namespace.
Key features of mnemo
- Session hooks automatically start/end sessions and inject memory context at the beginning of every conversation
- 14 MCP tools:
mem_save,mem_search,mem_context,mem_session_summary, and more - Passive capture extracts learnings from conversation transcripts automatically at session end
- Full CLI: save, search, export, import, and inspect memories from the terminal
- Own isolated storage at
~/.mnemo/memory.dbcreated automatically on first run - Native integration for both Claude Code and Cursor via their respective hook systems
Use cases of mnemo
- Save a coding decision (e.g., "Use FTS5 for search") with a project tag for later retrieval
- Search all past memories with full-text search to quickly find relevant context in a new session
- Automatically capture learnings from subagent output without manual saving
- Export all memories to JSON for backup or migration between machines
FAQ from mnemo
What runtime dependencies does mnemo require?
Go 1.22+ is required to build from source, but the prebuilt binary has no runtime dependencies beyond macOS or Linux. For editor integration, Claude Code CLI or Cursor 2.6+ must be installed.
How does mnemo store memories?
mnemo uses a local SQLite database with FTS5 full-text search, stored at ~/.mnemo/memory.db. The directory and database are created automatically on first run with no manual setup required.
How do I install mnemo?
You can install with the one-line installer (curl -sSf .../install.sh | bash), via the Claude Code plugin marketplace (claude plugin marketplace add jmeiracorbal/mnemo), or by building manually from source with go build.
Can mnemo be used with Cursor?
Yes, run mnemo setup --cursor to install hooks and configure the MCP server in Cursor 2.6+. You can preview changes with mnemo setup --cursor --dry-run.
What does passive capture do?
At session end, mnemo reads the conversation transcript (via the stop hook) and automatically extracts and saves learnings from the text, without requiring any explicit save command from the user.
数据库 分类下的更多 MCP 服务器
mcp_mysql_server
wenb1n-devModel Context Protocol (MCP) server that supports secure interaction with MySQL databases and has anomaly analysis capabilities.更加牛逼!更加好用!不仅止于mysql的增删改查功能; 还包含了数据库异常分析能力;且便于开发者们进行个性化的工具扩展
Chroma MCP Server
chroma-coreA Model Context Protocol (MCP) server implementation that provides database capabilities for Chroma
MCP MongoDB Server
kiliczshA Model Context Protocol Server for MongoDB

PostgreSQL
modelcontextprotocolModel Context Protocol Servers
MongoDB Lens
furey🍃🔎 MongoDB Lens: Full Featured MCP Server for MongoDB Databases
评论