
Neo4j知识图谱记忆
STDIO基于Neo4j图数据库的持久化记忆MCP服务器
基于Neo4j图数据库的持久化记忆MCP服务器
A Model Context Protocol (MCP) server implementation that provides persistent memory capabilities through Neo4j graph database integration.
By storing information in a graph structure, this server maintains complex relationships between entities as memory nodes and enables long-term retention of knowledge that can be queried and analyzed across multiple conversations or sessions.
With Neo4j Aura you can host your own database server for free or share it with your collaborators. Otherwise you can run your own Neo4j server locally.
The MCP server leverages Neo4j's graph database capabilities to create an interconnected knowledge base that serves as an external memory system. Through Cypher queries, it allows exploration and retrieval of stored information, relationship analysis between different data points, and generation of insights from the accumulated knowledge. This memory can be further enhanced with Claude's capabilities.
Memory
- A node representing an entity with a name, type, and observations.Relationship
- A relationship between two entities with a type.Let's add some memories
I, Michael, living in Dresden, Germany work at Neo4j which is headquartered in Sweden with my colleagues Andreas (Cambridge, UK) and Oskar (Gothenburg, Sweden)
I work in Product Management, Oskar in Engineering and Andreas in Developer Relations.
Results in Claude calling the create_entities and create_relations tools.
The server offers these core tools:
read_graph
search_nodes
query
(string): Search query matching names, types, observationsfind_nodes
names
(array of strings): Entity names to retrievecreate_entities
entities
: Array of objects with:
name
(string): Name of the entitytype
(string): Type of the entityobservations
(array of strings): Initial observations about the entitydelete_entities
entityNames
(array of strings): Names of entities to deletecreate_relations
relations
: Array of objects with:
source
(string): Name of source entitytarget
(string): Name of target entityrelationType
(string): Type of relationdelete_relations
relations
: Array of objects with same schema as create_relationsadd_observations
observations
: Array of objects with:
entityName
(string): Entity to add tocontents
(array of strings): Observations to adddelete_observations
deletions
: Array of objects with:
entityName
(string): Entity to delete fromobservations
(array of strings): Observations to removepip install mcp-neo4j-memory
Add the server to your claude_desktop_config.json
with configuration of:
"mcpServers": { "neo4j": { "command": "uvx", "args": [ "[email protected]", "--db-url", "neo4j+s://xxxx.databases.neo4j.io", "--username", "<your-username>", "--password", "<your-password>" ] } }
Alternatively, you can set environment variables:
"mcpServers": { "neo4j": { "command": "uvx", "args": [ "[email protected]" ], "env": { "NEO4J_URL": "neo4j+s://xxxx.databases.neo4j.io", "NEO4J_USERNAME": "<your-username>", "NEO4J_PASSWORD": "<your-password>" } } }
"mcpServers": { "neo4j": { "command": "docker", "args": [ "run", "--rm", "-e", "NEO4J_URL=neo4j+s://xxxx.databases.neo4j.io", "-e", "NEO4J_USERNAME=<your-username>", "-e", "NEO4J_PASSWORD=<your-password>", "mcp/neo4j-memory:0.1.5" ] } }
uv
(Universal Virtualenv):# Using pip pip install uv # Using Homebrew on macOS brew install uv # Using cargo (Rust package manager) cargo install uv
# Clone the repository git clone https://github.com/yourusername/mcp-neo4j-memory.git cd mcp-neo4j-memory # Create and activate virtual environment using uv uv venv source .venv/bin/activate # On Unix/macOS .venv\Scripts\activate # On Windows # Install dependencies including dev dependencies uv pip install -e ".[dev]"
Build and run the Docker container:
# Build the image docker build -t mcp/neo4j-memory:latest . # Run the container docker run -e NEO4J_URL="neo4j+s://xxxx.databases.neo4j.io" \ -e NEO4J_USERNAME="your-username" \ -e NEO4J_PASSWORD="your-password" \ mcp/neo4j-memory:latest
This MCP server is licensed under the MIT License. This means you are free to use, modify, and distribute the software, subject to the terms and conditions of the MIT License. For more details, please see the LICENSE file in the project repository.