everything vs mcp-neo4j
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | mcp-neo4j by neo4j-contrib | |
|---|---|---|
| Stars | ★ 85,748 | ★ 947 |
| 30d uses | — | — |
| Score | 77 | 52 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | DatabaseKnowledge GraphDeveloper Tools |
| Language | TypeScript | Python |
| Last commit | this month | 1 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
mcp-neo4j · Summary
Neo4j Labs MCP servers integrate graph databases with AI assistants through natural language.
everything · Use cases
- Testing MCP client implementations against all protocol features
- Learning MCP protocol capabilities through a reference server
- Validating client compatibility with different transport methods
mcp-neo4j · Use cases
- Convert natural language questions to graph database queries
- Store and retrieve personal knowledge across conversations
- Manage Neo4j Aura cloud instances through AI assistants
everything · Install
NPX (recommended)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}On Windows, use cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}Global install
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everythingmcp-neo4j · Install
Installation
Using pip
pip install mcp-neo4j-cypher mcp-neo4j-memory mcp-neo4j-cloud-aura-api mcp-neo4j-data-modelingClaude Desktop Configuration
Add the following to Claude's config.json:
{
"mcpServers": {
"neo4j": {
"command": "mcp-neo4j-cypher",
"args": []
}
}
}Docker Deployment
docker run -p 8080:8080 neo4j/mcp-neo4j-cypher --transport http --port 8080