Are you the author? Sign in to claim
A Model Context Protocol (MCP) server that gives AI assistants a persistent local memory using SQLite and semantic searc
Give Claude (and any MCP client) a persistent long-term memory. 100% local, no API key, no cloud.
LLMs forget everything the moment a conversation ends. claude-memory-mcp is a tiny
Model Context Protocol server that gives your assistant
a durable memory it can write to and search across sessions — so you stop re-explaining
your preferences, your stack, and your decisions every single time.
Everything runs on your machine. Memories live in a local SQLite file, and semantic
search uses a local embedding model (all-MiniLM-L6-v2) that runs in-process. No API key.
No data leaves your computer.
save_memory, search_memory, list_memories, delete_memory.Add this to your claude_desktop_config.json
(macOS: ~/Library/Application Support/Claude/claude_desktop_config.json,
Windows: %APPDATA%\Claude\claude_desktop_config.json):
{
"mcpServers": {
"memory": {
"command": "npx",
"args": ["-y", "claude-memory-mcp"],
"env": {
"MEMORY_DB_PATH": "~/.claude-memory/memories.db"
}
}
}
}
Restart Claude Desktop. You'll see the memory tools appear in the tools menu.
claude mcp add memory -- npx -y claude-memory-mcp
git clone https://github.com/<you>/claude-memory-mcp.git
cd claude-memory-mcp
npm install
npm run build
node dist/index.js # speaks MCP over stdio
| Tool | Description |
|---|---|
save_memory(content, tags?) | Store a durable fact, preference, or decision. |
search_memory(query, limit?, min_score?) | Semantic search over everything you've saved. |
list_memories(limit?, tag?) | Browse recent memories, optionally by tag. |
delete_memory(id) | Remove a memory by id. |
save_memorysearch_memoryproject-x." → list_memories| Env var | Default | Description |
|---|---|---|
MEMORY_DB_PATH | ~/.claude-memory/memories.db | Where the SQLite database is stored. |
MEMORY_EMBED_MODEL | Xenova/all-MiniLM-L6-v2 | Local embedding model (any @xenova/transformers feature-extraction model). |
save_memory embeds the text with a local MiniLM model and stores the text, tags, and
vector in SQLite.search_memory embeds your query and ranks stored memories by cosine similarity — all
in-process, no network calls.The first run downloads the embedding model (~25 MB) and caches it locally; every run after that is fully offline.
Your memories never leave your machine. There is no telemetry and no external API. Delete the database file to wipe everything.
Issues and PRs welcome! This project is intentionally small — good first issues include new storage backends, memory expiry/TTL, and export/import commands.
MIT — see LICENSE.
Google's universal MCP server supporting PostgreSQL, MySQL, MongoDB, Redis, and 10+ databases
Official MongoDB integration — query collections, run aggregations, inspect schemas
Secure MCP server for MySQL database interaction, queries, and schema management
Run Claude Code as an MCP server so any agent can delegate coding tasks to it