These MCP servers are a part of the Neo4j Labs program. They are developed and maintained by the Neo4j Field GenAI team and welcome contributions from the larger developer community. These servers are frequently updated with new and experimental features, but are not supported by the Neo4j product team. They are actively developed and maintained, but we don’t provide any SLAs or guarantees around
Add this skill
npx mdskills install neo4j-contrib/mcp-neo4jWell-documented collection of Neo4j MCP servers with diverse capabilities and deployment options
1# Neo4j Labs MCP Servers23## Neo4j Labs45These MCP servers are a part of the [Neo4j Labs](https://neo4j.com/labs/) program.6They are developed and maintained by the Neo4j Field GenAI team and welcome contributions from the larger developer community.7These servers are frequently updated with new and experimental features, but are not supported by the Neo4j product team.89**They are actively developed and maintained, but we don’t provide any SLAs or guarantees around backwards compatibility and deprecation.**1011If you are looking for the official product Neo4j MCP server please find it [here](https://github.com/neo4j/mcp).1213## Overview1415Model Context Protocol (MCP) is a [standardized protocol](https://modelcontextprotocol.io/introduction) for managing context between large language models (LLMs) and external systems.1617This lets you use Claude Desktop, or any other MCP Client (VS Code, Cursor, Windsurf, Gemini CLI), to use natural language to accomplish things with Neo4j and your Aura account, e.g.:1819* What is in this graph?20* Render a chart from the top products sold by frequency, total and average volume21* List my instances22* Create a new instance named mcp-test for Aura Professional with 4GB and Graph Data Science enabled23* Store the fact that I worked on the Neo4j MCP Servers today with Andreas and Oskar2425## Servers2627### `mcp-neo4j-cypher` - natural language to Cypher queries2829[Details in Readme](./servers/mcp-neo4j-cypher/)3031Get database schema for a configured database and execute generated read and write Cypher queries on that database.3233**Requirement**: Requires the [APOC plugin](https://neo4j.com/docs/apoc/current/installation/) to be installed and enabled on the Neo4j instance for schema inspection.3435### `mcp-neo4j-memory` - knowledge graph memory stored in Neo4j3637[Details in Readme](./servers/mcp-neo4j-memory/)3839Store and retrieve entities and relationships from your personal knowledge graph in a local or remote Neo4j instance.40Access that information over different sessions, conversations, clients.4142### `mcp-neo4j-cloud-aura-api` - Neo4j Aura cloud service management API4344[Details in Readme](./servers/mcp-neo4j-cloud-aura-api//)4546Manage your [Neo4j Aura](https://console.neo4j.io) instances directly from the comfort of your AI assistant chat.4748Create and destroy instances, find instances by name, scale them up and down and enable features.4950### `mcp-neo4j-data-modeling` - interactive graph data modeling and visualization5152[Details in Readme](./servers/mcp-neo4j-data-modeling/)5354Create, validate, and visualize Neo4j graph data models. Allows for model import/export from Arrows.app.5556## Transport Modes5758All servers support multiple transport modes:5960- **STDIO** (default): Standard input/output for local tools and Claude Desktop integration61- **SSE**: Server-Sent Events for web-based deployments62- **HTTP**: Streamable HTTP for modern web deployments and microservices6364### HTTP Transport Configuration6566To run a server in HTTP mode, use the `--transport http` flag:6768```bash69# Basic HTTP mode70mcp-neo4j-cypher --transport http7172# Custom HTTP configuration73mcp-neo4j-cypher --transport http --host 127.0.0.1 --port 8080 --path /api/mcp/74```7576Environment variables are also supported:7778```bash79export NEO4J_TRANSPORT=http80export NEO4J_MCP_SERVER_HOST=127.0.0.181export NEO4J_MCP_SERVER_PORT=808082export NEO4J_MCP_SERVER_PATH=/api/mcp/83mcp-neo4j-cypher84```8586## Cloud Deployment8788All servers in this repository are containerized and ready for cloud deployment on platforms like AWS ECS Fargate and Azure Container Apps. Each server supports HTTP transport mode specifically designed for scalable, production-ready deployments with auto-scaling and load balancing capabilities.8990📋 **[Complete Cloud Deployment Guide →](README-Cloud.md)**9192The deployment guide covers:93- **AWS ECS Fargate**: Step-by-step deployment with auto-scaling and Application Load Balancer94- **Azure Container Apps**: Serverless container deployment with built-in scaling and traffic management95- **Configuration Best Practices**: Security, monitoring, resource recommendations, and troubleshooting96- **Integration Examples**: Connecting MCP clients to cloud-deployed servers9798## Contributing99100Contributions are welcome! Please feel free to submit a Pull Request.101102## Blog Posts103104* [Everything a Developer Needs to Know About the Model Context Protocol (MCP)](https://neo4j.com/blog/developer/model-context-protocol/)105* [Claude Converses With Neo4j Via MCP - Graph Database & Analytics](https://neo4j.com/blog/developer/claude-converses-neo4j-via-mcp/)106* [Building Knowledge Graphs With Claude and Neo4j: A No-Code MCP Approach - Graph Database & Analytics](https://neo4j.com/blog/developer/knowledge-graphs-claude-neo4j-mcp/)107* [Using the Neo4j Extension in Gemini CLI](https://cloud.google.com/blog/topics/developers-practitioners/using-the-neo4j-extension-in-gemini-cli)108109## License110111MIT License112
Full transparency — inspect the skill content before installing.