claude-memory-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@claude-memory-mcpRemember I use 2-space indentation."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
🧠 claude-memory-mcp
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.
✨ Features
Persistent memory across sessions, backed by a single SQLite file you own.
Semantic search — recall by meaning, not just keywords, via local embeddings.
Zero API keys / fully offline after the first model download.
Works with any MCP client — Claude Desktop, Claude Code, Cursor, and more.
Four simple tools:
save_memory,search_memory,list_memories,delete_memory.Tiny & hackable — a few hundred lines of TypeScript.
Related MCP server: MCPMem
🚀 Quick start
Claude Desktop
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 Code
claude mcp add memory -- npx -y claude-memory-mcpFrom source
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🛠️ Tools
Tool | Description |
| Store a durable fact, preference, or decision. |
| Semantic search over everything you've saved. |
| Browse recent memories, optionally by tag. |
| Remove a memory by id. |
Example prompts
"Remember that I prefer TypeScript with 2-space indentation." →
save_memory"What do you know about my coding preferences?" →
search_memory"List everything tagged
project-x." →list_memories
⚙️ Configuration
Env var | Default | Description |
|
| Where the SQLite database is stored. |
|
| Local embedding model (any |
🧩 How it works
save_memoryembeds the text with a local MiniLM model and stores the text, tags, and vector in SQLite.search_memoryembeds your query and ranks stored memories by cosine similarity — all in-process, no network calls.The database is a plain SQLite file, so it's easy to back up, inspect, or sync yourself.
The first run downloads the embedding model (~25 MB) and caches it locally; every run after that is fully offline.
🔒 Privacy
Your memories never leave your machine. There is no telemetry and no external API. Delete the database file to wipe everything.
🤝 Contributing
Issues and PRs welcome! This project is intentionally small — good first issues include new storage backends, memory expiry/TTL, and export/import commands.
📄 License
MIT — see LICENSE.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/imshota1009/claude-memory-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server