Home/Servers/Memory MCP Server

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"
        ]
      }
    }
  }
}
โ† Back to all servers