MCP Memory Domain Knowledge MCP Server

MCP server for enabling memory for Claude through a knowledge graph

Local serverstdioPython

What is the MCP Memory Domain Knowledge MCP server?

MCP Memory Domain Knowledge MCP server exists for a simple reason — assistants are far more useful when they can act on MCP Memory Domain Knowledge directly instead of describing what you should do. MCP server for enabling memory for Claude through a knowledge graph.

What you get

forked https://github.com/modelcontextprotocol/servers/tree/main

Setting it up

Installation goes through your MCP client rather than a global install: point it at with on npm and it is fetched when the client starts. The copy-paste blocks for Claude Desktop, Claude Code and Cursor are further down this page.

What the assistant can call

Once MCP Memory Domain Knowledge is connected, these are the calls the assistant has available:

  • create_entities — Create multiple new entities in the knowledge graph
  • Input — entities (array of objects)
  • create_relations — Create multiple new relations between entities
  • add_observations — Add new observations to existing entities
  • delete_entities — Remove entities and their relations
  • delete_observations — Remove specific observations from entities
  • delete_relations — Remove specific relations from the graph
  • read_graph — Read the entire knowledge graph
  • search_nodes — Search for nodes based on one or more keywords
  • Space — separated keywords (e.g., "budget utility")
  • Subdomains — Observation content
  • Case-insensitive — Partial word matching

Configuration and credentials

You will need one environment variable: MEMORY_FILE_PATH. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.

Before you rely on it

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • With 14 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch MCP Memory Domain Knowledge.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the mcp memory domain knowledge mcp server does with a few real requests.

Choosing this one

Among the knowledge and memory options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. MCP Memory Domain Knowledge's toolset — create_entities, Input, create_relations and 11 more — is a fair guide to whether it matches your workflow. It is maintained by yodakeisuke; worth a glance at recent repository activity before you build anything load-bearing on it.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

Available tools

ToolWhat it does
create_entitiesCreate multiple new entities in the knowledge graph
Inputentities (array of objects)
create_relationsCreate multiple new relations between entities
add_observationsAdd new observations to existing entities
delete_entitiesRemove entities and their relations
delete_observationsRemove specific observations from entities
delete_relationsRemove specific relations from the graph
read_graphRead the entire knowledge graph
search_nodesSearch for nodes based on one or more keywords
Spaceseparated keywords (e.g., "budget utility")
SubdomainsObservation content
Case-insensitivePartial word matching
open_nodesRetrieve specific nodes by name
Returns- Requested entities

How to install the MCP Memory Domain Knowledge MCP server

{
  "mcpServers": {
    "memory": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "mcp/memory"]
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

VariableDescriptionRequired
MEMORY_FILE_PATHFilesystem location the server is allowed to use.Optional

Example prompts to try

  • Use MCP Memory Domain Knowledge to create entities.
  • Use MCP Memory Domain Knowledge to Input.
  • Use MCP Memory Domain Knowledge to create relations.

Frequently asked questions

It connects MCP Memory Domain Knowledge to MCP-compatible AI assistants such as Claude and Cursor, exposing 14 tools (create_entities, Input, create_relations, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with MCP Memory Domain Knowledge directly.