Back to DirectoryCOMPARISON OVERVIEW
Persistent memory MCP servers let assistants retain information beyond a single chat window. The official Memory reference server implements a knowledge graph of entities and relations — the steering group's canonical pattern for "remember this across sessions."
TOP PICK: MEMORY
Install (official README): npx -y @modelcontextprotocol/server-memory
Claude Desktop config (official):
{
"mcpServers": {
"memory": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-memory"]
}
}
}
Windows: wrap with cmd /c per README.
Strengths:
- Knowledge graph model — entities and relationships, not just key-value notes
- Nine tools (per directory metadata) for creating and querying memory
- TypeScript / npx — consistent with other Node reference servers
- No external database setup for basic local use
Trade-offs:
- Local persistence semantics — understand on-disk storage location from the Memory server README
- Not a vector RAG replacement for large document corpora
- Reference server — backup and privacy are your responsibility
FILESYSTEM AS MANUAL MEMORY
Some teams store PROJECT.md or .cursor/rules as "memory" via Filesystem MCP. Pros: human-readable, git-versioned. Cons: no structured graph queries, manual organization.
SEQUENTIAL THINKING
Does not persist memory across sessions but improves in-session reasoning before writing to Memory — use both when the assistant should think, then commit facts to the graph.
COMPARISON DIMENSIONS
| Dimension | Memory | Filesystem notes |
| Structured relations | Yes | Manual markdown |
| Cross-session persistence | Yes | Yes (if files saved) |
| Human editability | Via tools | Direct edit |
| Setup friction | Low | Low |
SECURITY
Memory can store sensitive facts if the model is asked to remember them. Periodically inspect stored graph data. Do not store secrets, tokens, or PII unless encrypted and policy-approved.
The Memory server ships in the highly visible modelcontextprotocol/servers monorepo — a common starting point, not an enterprise memory product.
Best MCP Servers for Persistent Memory
Remember facts, preferences, and context across AI conversations.