Provides memory and knowledge graph operations using Neo4j database, including adding memories, searching entities and relationships, managing episodes, and querying historical data through natural language interfaces.
Optional integration for enhanced entity extraction from memories and episodes stored in the knowledge graph.
Graphiti-Memory MCP Server
A Model Context Protocol (MCP) server that provides memory and knowledge graph operations using Neo4j and the Graphiti framework.
Features
📝 Add Memories: Store episodes and information in the knowledge graph with automatic entity extraction
🧠 Search Nodes: Query entities in your knowledge graph using natural language
🔗 Search Facts: Find relationships and connections between entities
📚 Retrieve Episodes: Get historical episodes and memories
🗑️ Management Tools: Delete episodes, edges, and clear the graph
🤖 AI-Powered: Optional OpenAI integration for enhanced entity extraction
📊 Real-time Data: Direct connection to your Neo4j database
🛠️ Built-in Diagnostics: Comprehensive error messages and troubleshooting
Installation
Prerequisites
Neo4j Database: You need a running Neo4j instance
# Install Neo4j (via Homebrew on macOS) brew install neo4j # Start Neo4j neo4j startPython 3.10+: Required for the MCP server
Install from PyPI
Install from Source
Configuration
MCP Configuration
Add to your MCP client configuration file (e.g., Claude Desktop config):
Neo4j Setup
Set Password (first-time setup):
neo4j-admin dbms set-initial-password YOUR_PASSWORDTest Connection:
# HTTP interface curl http://127.0.0.1:7474 # Bolt protocol nc -zv 127.0.0.1 7687
Available Tools
1. add_memory
Add an episode or memory to the knowledge graph. This is the primary way to add information.
Example:
Parameters:
name: Name of the episode (required)episode_body: Content to store - text, message, or JSON (required)source: Type of content - "text", "message", or "json" (default: "text")group_id: Optional namespace for organizing datasource_description: Optional description
2. search_memory_nodes
Search for nodes (entities) in the knowledge graph using natural language.
Example:
Returns: List of nodes with UUID, name, summary, labels, and timestamps.
3. search_memory_facts
Search for facts (relationships) between entities in the knowledge graph.
Example:
Returns: List of fact triples with source, target, and relationship details.
4. get_episodes
Retrieve recent episodes for a specific group.
Example:
5. delete_episode
Delete an episode from the knowledge graph.
Example:
6. delete_entity_edge
Delete a fact (entity edge) from the knowledge graph.
Example:
7. get_entity_edge
Retrieve a specific entity edge by UUID.
Example:
8. clear_graph
Clear all data from the knowledge graph (DESTRUCTIVE).
Example:
Usage
With Claude Desktop
Configure in ~/Library/Application Support/Claude/claude_desktop_config.json:
Note: OPENAI_API_KEY is optional. Without it, entity extraction will be limited but the server will still work.
Standalone Testing
Test the server directly from command line:
Troubleshooting
Connection Failed
Error: Connection refused or ServiceUnavailable
Solutions:
Check Neo4j is running:
neo4j statusStart Neo4j:
neo4j startVerify port 7687 is accessible:
nc -zv 127.0.0.1 7687
Authentication Failed
Error: Unauthorized or authentication failure
Solutions:
Verify password is correct
Reset password:
neo4j-admin dbms set-initial-password NEW_PASSWORDUpdate password in MCP configuration
Use test tool to verify:
test_neo4j_auth
Package Not Found
Error: neo4j package not installed
This package automatically installs the neo4j dependency. If you see this error:
Development
Setup Development Environment
Running Tests
Architecture
The server:
Listens on stdin for JSON-RPC messages
Logs diagnostics to stderr
Responds on stdout with JSON-RPC
Maintains persistent Neo4j connection
Contributing
Contributions welcome! Please:
Fork the repository
Create a feature branch
Make your changes
Submit a pull request
License
MIT License - see LICENSE file for details.
Links
GitHub: https://github.com/alankyshum/graphiti-memory
PyPI: https://pypi.org/project/graphiti-memory/
Issues: https://github.com/alankyshum/graphiti-memory/issues
MCP Specification: https://modelcontextprotocol.io
Credits
Built for use with:
Graphiti - Knowledge graph framework