Anthropic's MCP memory server is a reference toy. ArgosBrain is a memory engine.
Anthropic's reference MCP memory server (from github.com/modelcontextprotocol/servers — repo reorganized late 2025, now in servers-archived). Knowledge-graph-shaped: entities (name, type, observations[]) + relations (from, to, type). Stored in a plain JSON file (default memory.json).
Tools: create_entities, create_relations, add_observations, delete_*, read_graph, search_nodes, open_nodes. Runs via npx.
search_nodes is a substring match over serialized JSON. No embeddings, no traversal scoring, no ranking.Sources: Source
npx.