drio
Open app

MCP Neo4j Server

Source

Mirror of

Catalog onlyCatalog onlySTDIO

Overview

MCP Neo4j Server is an integration tool that connects the Neo4j graph database with Claude Desktop, allowing users to perform graph database operations using natural language commands.

To use the MCP Neo4j Server, you can run it directly using npx or configure it within your Claude Desktop setup by specifying the necessary environment variables for Neo4j connection.

  • Execute Cypher queries through natural language. - Create nodes and relationships in the Neo4j database. - Supports complex queries and operations with user-friendly commands.
  1. Querying employee data in a company.
  2. Adding new products or entities to the graph database.
  3. Establishing relationships between different nodes in the database.

Add to your AI client

Use these steps to connect MCP Neo4j Server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "da-okazaki-mcp-neo4j-server-mcp-mirror": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-da-okazaki-mcp-neo4j-server-mcp-mirror"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "da-okazaki-mcp-neo4j-server-mcp-mirror": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-da-okazaki-mcp-neo4j-server-mcp-mirror"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "da-okazaki-mcp-neo4j-server-mcp-mirror": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-da-okazaki-mcp-neo4j-server-mcp-mirror"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "da-okazaki-mcp-neo4j-server-mcp-mirror": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-da-okazaki-mcp-neo4j-server-mcp-mirror"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "da-okazaki-mcp-neo4j-server-mcp-mirror": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-da-okazaki-mcp-neo4j-server-mcp-mirror"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "da-okazaki-mcp-neo4j-server-mcp-mirror": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-da-okazaki-mcp-neo4j-server-mcp-mirror"
      ]
    }
  }
}

FAQ

Can I use natural language for all types of queries?

Yes! The server is designed to interpret natural language commands for various database operations.

Is there a limit to the complexity of queries?

While the server can handle complex queries, the performance may vary based on the query's complexity and the database size.

How do I install the MCP Neo4j Server?

You can install it via npx or through the Smithery CLI for automatic setup.