Neo4j MCP Server
Databasestdiov0.3.0
Official MCP server for the Neo4j graph database. Enables AI agents to run Cypher queries, inspect graph schemas, and manage nodes and relationships. Includes support for natural-language to Cypher translation and graph-backed memory for agents. Useful for knowledge graphs, recommendations, fraud detection, and relationship-heavy data.
Connect
Add this configuration to .claude/mcp.json
{
"mcpServers": {
"neo4j": {
"command": "uvx",
"args": [
"mcp-neo4j-cypher"
],
"env": {
"NEO4J_URI": "<YOUR_NEO4J_URI>",
"NEO4J_USERNAME": "<YOUR_NEO4J_USERNAME>",
"NEO4J_PASSWORD": "<YOUR_NEO4J_PASSWORD>"
}
}
}
}Tools (2)
read_cypher
Execute a read-only Cypher query and return matching nodes and relationships.
{
"type": "object",
"required": [
"query"
],
"properties": {
"query": {
"type": "string",
"description": "Cypher query to execute"
},
"params": {
"type": "object",
"description": "Query parameters"
}
}
}get_schema
Return the graph schema including node labels, relationship types, and properties.
{
"type": "object",
"properties": {}
}Resources
This server does not expose any resources.
Prompts
This server does not expose any prompts.
Server Information
- Author
- Neo4j (@neo4j-contrib)
- License
- MIT
- Version
- 0.3.0
- Stars
- 900
- Last Updated
- July 9, 2026