Memory
Persistent memory graph for Claude. Survives across conversations - useful for personal assistants that need to remember facts about you and your projects.
Delv Safety Grade: A
Score 85/100 · assessed 2026-04-22
Anthropic's official memory server provides persistent knowledge graph storage across Claude conversations. It's distributed via npm with proper versioning and lives in the official MCP servers monorepo. The maintainer score is excellent given Anthropic's backing. Permissions are moderately scoped: it writes structured data to local filesystem (a SQLite database) and reads it back, but doesn't execute code or access network. Supply chain is solid through npm registry. Transparency is good with open source code and documentation, though changelog detail could be fuller. No known security incidents. The main consideration is that it stores potentially sensitive personal information locally in plaintext SQLite, so filesystem access by other processes could expose this data. Overall a trustworthy tool for its stated purpose, with appropriate caution around what you choose to store.
Lethal Trifecta (prompt-injection exposure)
ONE OF THREEPersists user context; a private-data sink in a prompt-injection chain.
Green flags
- Official Anthropic implementation with active maintenance
- Distributed via npm with proper semver and package integrity
- Open source with clear documentation in MCP monorepo
- Scoped to structured knowledge graph writes, no shell execution
- No network access or external API calls
Red flags
- Stores personal data in local SQLite without encryption
- Filesystem write access could persist malicious data if Claude is compromised
- No built-in data retention or deletion policies
Permissions requested
Install
npx -y @modelcontextprotocol/server-memory
{
"memory": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-memory"]
}
}Review
Install this if you use Claude for anything that spans multiple sessions: project work, research, personal assistance. The memory persistence is transformative for ongoing workflows. Skip it if you're doing one-shot queries or don't want Claude remembering things between chats.
Good at
- Knowledge graph structure means Claude connects related facts, not just stores flat notes.
- Completely automatic: no manual commands to save or load, Claude handles it mid-conversation.
- Local storage, so your personal data stays on your machine.
- Works seamlessly across Claude Desktop and Claude Code without extra config.
- Official Anthropic support means it's maintained and unlikely to break with Claude updates.
Watch out
- No built-in way to browse or search the full memory graph, you have to ask Claude to surface it.
- Memory is device-specific, so switching machines means losing context unless you manually export.
- Can store things you didn't intend to be permanent, requiring occasional manual cleanup.
- Opaque internals: you can't easily inspect or edit the underlying graph file directly.
Use cases
- Personal assistant continuity
- Building up project knowledge over time
- Remembering user preferences
- Cross-session context for research
Getting started
Works with
Similar MCPs
- GistPad MCPManages personal knowledge, daily notes, and reusable prompts through GitHub Gists with the GistPad VS Code companion.
- Knowledge Graph (Anthropic)Anthropic-built knowledge-graph MCP. Stores entities + relationships, persists across sessions, queryable via natural language.
- MilvusZilliz/Milvus official MCP. Lets agents store and query vectors against the Milvus engine for production-scale RAG.
- Mem0Mem0's hosted MCP for long-term memory with semantic recall. Local repo archived; current path is the cloud-hosted server at mcp.mem0.ai/mcp.