Memory MCP Server
by Anthropic ยท โญ 2.9k stars ยท updated 1 months ago
Knowledge graph-based persistent memory system for AI assistants. Store and retrieve facts, relationships, and context across sessions using a structured knowledge graph.
91
Excellent
Quality Score Breakdown
maintenance94/100
community88/100
documentation90/100
compatibility92/100
Use Cases
- โpersistent memory
- โstore facts
- โknowledge retrieval
- โcontext management
โก One-Click Install Configs
Copy the config below and paste it into your AI client's config file.
๐ค Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"memory": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-memory"
]
}
}
}โก Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"memory": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-memory"
]
}
}
}๐ VS Code
.vscode/mcp.json
{
"mcp": {
"servers": {
"memory": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-memory"
]
}
}
}
}