Content
1{
2 "mcpServers": {
3 "memory": {
4 "command": "npx",
5 "args": ["-y", "@modelcontextprotocol/server-memory"]
6 }
7 }
8}
9
10// ── How it works ─────────────────────────────────────────────────────────────
11// Stores a semantic knowledge graph on disk (default: ~/.mcp-memory/).
12// Claude can create entities, record relationships, and search them later —
13// giving it persistent memory across sessions.
14//
15// ── Available tools ──────────────────────────────────────────────────────────
16// create_entities add new named entities with observations
17// create_relations link two entities with a relationship label
18// add_observations append facts to an existing entity
19// delete_entities remove entities and their relations
20// delete_observations remove specific facts from an entity
21// delete_relations remove a specific relationship
22// read_graph dump the full knowledge graph
23// search_nodes semantic search over entities
24// open_nodes fetch specific entities by name
25