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.

连接

将此配置添加到 .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>"
      }
    }
  }
}

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

资源

此服务器未提供任何资源。

提示词

此服务器未提供任何提示词。

服务器信息

作者
Neo4j (@neo4j-contrib)
代码仓库
https://github.com/neo4j-contrib/mcp-neo4j
许可证
MIT
版本
0.3.0
星标
900
最后更新
2026年7月9日