Neo4j MCP Server

Databasestdiov0.3.0
Repositorio

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.

Conectar

Añade esta configuración a .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>"
      }
    }
  }
}

Herramientas (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": {}
}

Recursos

Este servidor no expone ningún recurso.

Prompts

Este servidor no expone ningún prompt.

Información del servidor

Autor
Neo4j (@neo4j-contrib)
Repositorio
https://github.com/neo4j-contrib/mcp-neo4j
Licencia
MIT
Versión
0.3.0
Estrellas
900
Última actualización
9 de julio de 2026