Model Context Protocol with Neo4j
- • Core MCP protocol features implemented (24/40)
- • GitHub community is developing well (18/20)
- • Optimal dependency management (20/20)
- • Full deployment maturity (10/10)
- • Documentation (8/8)
- • Archestra MCP Trust score badge is missing
{
"mcp-neo4j-cypher-stdio": {
"command": "mcp-neo4j-cypher",
"args": [],
"env": {}
},
"mcp-neo4j-cypher-http": {
"command": "mcp-neo4j-cypher",
"args": [
"--transport",
"http"
],
"env": {}
},
"mcp-neo4j-cypher-http-configured": {
"command": "mcp-neo4j-cypher",
"args": [
"--transport",
"http",
"--host",
"0.0.0.0",
"--port",
"8080",
"--path",
"/api/mcp/"
],
"env": {}
},
"mcp-neo4j-cypher-http-env": {
"command": "mcp-neo4j-cypher",
"args": [],
"env": {
"NEO4J_TRANSPORT": "http",
"NEO4J_MCP_SERVER_HOST": "0.0.0.0",
"NEO4J_MCP_SERVER_PORT": "8080",
"NEO4J_MCP_SERVER_PATH": "/api/mcp/"
}
},
"mcp-neo4j-memory-stdio": {
"command": "mcp-neo4j-memory",
"args": [],
"env": {}
},
"mcp-neo4j-memory-http": {
"command": "mcp-neo4j-memory",
"args": [
"--transport",
"http"
],
"env": {}
},
"mcp-neo4j-memory-http-configured": {
"command": "mcp-neo4j-memory",
"args": [
"--transport",
"http",
"--host",
"0.0.0.0",
"--port",
"8080",
"--path",
"/api/mcp/"
],
"env": {}
},
"mcp-neo4j-memory-http-env": {
"command": "mcp-neo4j-memory",
"args": [],
"env": {
"NEO4J_TRANSPORT": "http",
"NEO4J_MCP_SERVER_HOST": "0.0.0.0",
"NEO4J_MCP_SERVER_PORT": "8080",
"NEO4J_MCP_SERVER_PATH": "/api/mcp/"
}
},
"mcp-neo4j-cloud-aura-api-stdio": {
"command": "mcp-neo4j-cloud-aura-api",
"args": [],
"env": {}
},
"mcp-neo4j-cloud-aura-api-http": {
"command": "mcp-neo4j-cloud-aura-api",
"args": [
"--transport",
"http"
],
"env": {}
},
"mcp-neo4j-cloud-aura-api-http-configured": {
"command": "mcp-neo4j-cloud-aura-api",
"args": [
"--transport",
"http",
"--host",
"0.0.0.0",
"--port",
"8080",
"--path",
"/api/mcp/"
],
"env": {}
},
"mcp-neo4j-cloud-aura-api-http-env": {
"command": "mcp-neo4j-cloud-aura-api",
"args": [],
"env": {
"NEO4J_TRANSPORT": "http",
"NEO4J_MCP_SERVER_HOST": "0.0.0.0",
"NEO4J_MCP_SERVER_PORT": "8080",
"NEO4J_MCP_SERVER_PATH": "/api/mcp/"
}
},
"mcp-neo4j-data-modeling-stdio": {
"command": "mcp-neo4j-data-modeling",
"args": [],
"env": {}
},
"mcp-neo4j-data-modeling-http": {
"command": "mcp-neo4j-data-modeling",
"args": [
"--transport",
"http"
],
"env": {}
},
"mcp-neo4j-data-modeling-http-configured": {
"command": "mcp-neo4j-data-modeling",
"args": [
"--transport",
"http",
"--host",
"0.0.0.0",
"--port",
"8080",
"--path",
"/api/mcp/"
],
"env": {}
},
"mcp-neo4j-data-modeling-http-env": {
"command": "mcp-neo4j-data-modeling",
"args": [],
"env": {
"NEO4J_TRANSPORT": "http",
"NEO4J_MCP_SERVER_HOST": "0.0.0.0",
"NEO4J_MCP_SERVER_PORT": "8080",
"NEO4J_MCP_SERVER_PATH": "/api/mcp/"
}
}
}Neo4j MCP Clients & Servers
Model Context Protocol (MCP) is a standardized protocol for managing context between large language models (LLMs) and external systems.
This lets you use Claude Desktop, or any other MCP Client (VS Code, Cursor, Windsurf), to use natural language to accomplish things with Neo4j and your Aura account, e.g.:
- What is in this graph?
- Render a chart from the top products sold by frequency, total and average volume
- List my instances
- Create a new instance named mcp-test for Aura Professional with 4GB and Graph Data Science enabled
- Store the fact that I worked on the Neo4j MCP Servers today with Andreas and Oskar
Servers
mcp-neo4j-cypher - natural language to Cypher queries
Get database schema for a configured database and execute generated read and write Cypher queries on that database.
mcp-neo4j-memory - knowledge graph memory stored in Neo4j
Store and retrieve entities and relationships from your personal knowledge graph in a local or remote Neo4j instance.
Access that information over different sessions, conversations, clients.
mcp-neo4j-cloud-aura-api - Neo4j Aura cloud service management API
Manage your Neo4j Aura instances directly from the comfort of your AI assistant chat.
Create and destroy instances, find instances by name, scale them up and down and enable features.
mcp-neo4j-data-modeling - interactive graph data modeling and visualization
Create, validate, and visualize Neo4j graph data models. Allows for model import/export from Arrows.app.
Transport Modes
All servers support multiple transport modes:
- STDIO (default): Standard input/output for local tools and Claude Desktop integration
- SSE: Server-Sent Events for web-based deployments
- HTTP: Streamable HTTP for modern web deployments and microservices
HTTP Transport Configuration
To run a server in HTTP mode, use the --transport http flag:
# Basic HTTP mode
mcp-neo4j-cypher --transport http
# Custom HTTP configuration
mcp-neo4j-cypher --transport http --host 127.0.0.1 --port 8080 --path /api/mcp/
Environment variables are also supported:
export NEO4J_TRANSPORT=http
export NEO4J_MCP_SERVER_HOST=127.0.0.1
export NEO4J_MCP_SERVER_PORT=8080
export NEO4J_MCP_SERVER_PATH=/api/mcp/
mcp-neo4j-cypher
Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
Blog Posts
- Everything a Developer Needs to Know About the Model Context Protocol (MCP)
- Claude Converses With Neo4j Via MCP - Graph Database & Analytics
- Building Knowledge Graphs With Claude and Neo4j: A No-Code MCP Approach - Graph Database & Analytics
License
MIT License
[](https://archestra.ai/mcp-catalog/neo4j-contrib__mcp-neo4j)Neo4j MCP Clients & Servers
Model Context Protocol (MCP) is a standardized protocol for managing context between large language models (LLMs) and external systems.
This lets you use Claude Desktop, or any other MCP Client (VS Code, Cursor, Windsurf), to use natural language to accomplish things with Neo4j and your Aura account, e.g.:
- What is in this graph?
- Render a chart from the top products sold by frequency, total and average volume
- List my instances
- Create a new instance named mcp-test for Aura Professional with 4GB and Graph Data Science enabled
- Store the fact that I worked on the Neo4j MCP Servers today with Andreas and Oskar
Servers
mcp-neo4j-cypher - natural language to Cypher queries
Get database schema for a configured database and execute generated read and write Cypher queries on that database.
mcp-neo4j-memory - knowledge graph memory stored in Neo4j
Store and retrieve entities and relationships from your personal knowledge graph in a local or remote Neo4j instance.
Access that information over different sessions, conversations, clients.
mcp-neo4j-cloud-aura-api - Neo4j Aura cloud service management API
Manage your Neo4j Aura instances directly from the comfort of your AI assistant chat.
Create and destroy instances, find instances by name, scale them up and down and enable features.
mcp-neo4j-data-modeling - interactive graph data modeling and visualization
Create, validate, and visualize Neo4j graph data models. Allows for model import/export from Arrows.app.
Transport Modes
All servers support multiple transport modes:
- STDIO (default): Standard input/output for local tools and Claude Desktop integration
- SSE: Server-Sent Events for web-based deployments
- HTTP: Streamable HTTP for modern web deployments and microservices
HTTP Transport Configuration
To run a server in HTTP mode, use the --transport http flag:
# Basic HTTP mode
mcp-neo4j-cypher --transport http
# Custom HTTP configuration
mcp-neo4j-cypher --transport http --host 127.0.0.1 --port 8080 --path /api/mcp/
Environment variables are also supported:
export NEO4J_TRANSPORT=http
export NEO4J_MCP_SERVER_HOST=127.0.0.1
export NEO4J_MCP_SERVER_PORT=8080
export NEO4J_MCP_SERVER_PATH=/api/mcp/
mcp-neo4j-cypher
Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
Blog Posts
- Everything a Developer Needs to Know About the Model Context Protocol (MCP)
- Claude Converses With Neo4j Via MCP - Graph Database & Analytics
- Building Knowledge Graphs With Claude and Neo4j: A No-Code MCP Approach - Graph Database & Analytics
License
MIT License
Related MCP Servers
mcp-shrimp-task-manager
88/100Shrimp Task Manager is a task tool built for AI Agents, emphasizing chain-of-thought, reflection, and style consistency. It converts natural language into structured dev tasks with dependency tracking and iterative refinement, enabling agent-like developer behavior in reasoning AI systems.
cognee-mcp
86/100Memory for AI Agents in 5 lines of code
shadcn-ui-mcp-server
82/100A mcp server to allow LLMS gain context about shadcn ui component structure,usage and installation,compaitable with react,svelte 5,and vue
mobile-mcp
81/100Model Context Protocol Server for Mobile Automation and Scraping (iOS, Android, Emulators, Simulators and Real Devices)
HuggingFace
80/100Remote MCP server for HuggingFace services - access models, datasets, and spaces
markitdown-mcp
80/100Python tool for converting files and office documents to Markdown.
