Skip to main content

A simple Neo4j MCP server for creating graph data models.

Project description

🔍📊 Neo4j Data Modeling MCP Server

🌟 Overview

A Model Context Protocol (MCP) server implementation that provides tools for creating, visualizing, and managing Neo4j graph data models. This server enables you to define nodes, relationships, and properties to design graph database schemas that can be visualized interactively.

🧩 Components

📦 Resources

The server provides these resources:

Schema

  • resource://schema/node

    • Get the JSON schema for a Node object
    • Returns: JSON schema defining the structure of a Node
  • resource://schema/relationship

    • Get the JSON schema for a Relationship object
    • Returns: JSON schema defining the structure of a Relationship
  • resource://schema/property

    • Get the JSON schema for a Property object
    • Returns: JSON schema defining the structure of a Property
  • resource://schema/data_model

    • Get the JSON schema for a DataModel object
    • Returns: JSON schema defining the structure of a DataModel

Example Data Models

  • resource://examples/patient_journey_model

    • Get a real-world Patient Journey healthcare data model in JSON format
    • Returns: JSON DataModel for tracking patient encounters, conditions, medications, and care plans
  • resource://examples/supply_chain_model

    • Get a real-world Supply Chain data model in JSON format
    • Returns: JSON DataModel for tracking products, orders, inventory, and locations
  • resource://examples/software_dependency_model

    • Get a real-world Software Dependency Graph data model in JSON format
    • Returns: JSON DataModel for software dependency tracking with security vulnerabilities, commits, and contributor analysis
  • resource://examples/oil_gas_monitoring_model

    • Get a real-world Oil and Gas Equipment Monitoring data model in JSON format
    • Returns: JSON DataModel for industrial monitoring of oil and gas equipment, sensors, alerts, and maintenance
  • resource://examples/customer_360_model

    • Get a real-world Customer 360 data model in JSON format
    • Returns: JSON DataModel for customer relationship management with accounts, contacts, orders, tickets, and surveys
  • resource://examples/fraud_aml_model

    • Get a real-world Fraud & AML data model in JSON format
    • Returns: JSON DataModel for financial fraud detection and anti-money laundering with customers, transactions, alerts, and compliance
  • resource://examples/health_insurance_fraud_model

    • Get a real-world Health Insurance Fraud Detection data model in JSON format
    • Returns: JSON DataModel for healthcare fraud detection tracking investigations, prescriptions, executions, and beneficiary relationships

Ingest

  • resource://neo4j_data_ingest_process
    • Get a detailed explanation of the recommended process for ingesting data into Neo4j using the data model
    • Returns: Markdown document explaining the ingest process

🛠️ Tools

The server offers these core tools:

✅ Validation Tools

  • validate_node

    • Validate a single node structure
    • Input:
      • node (Node): The node to validate
    • Returns: True if valid, raises ValueError if invalid
  • validate_relationship

    • Validate a single relationship structure
    • Input:
      • relationship (Relationship): The relationship to validate
    • Returns: True if valid, raises ValueError if invalid
  • validate_data_model

    • Validate the entire data model structure
    • Input:
      • data_model (DataModel): The data model to validate
    • Returns: True if valid, raises ValueError if invalid

👁️ Visualization Tools

  • get_mermaid_config_str
    • Generate a Mermaid diagram configuration string for the data model, suitable for visualization in tools that support Mermaid
    • Input:
      • data_model (DataModel): The data model to visualize
    • Returns: Mermaid configuration string representing the data model

🔄 Import/Export Tools

These tools provide integration with Arrows - a graph drawing web application for creating detailed Neo4j data models with an intuitive visual interface.

  • load_from_arrows_json

    • Load a data model from Arrows app JSON format
    • Input:
      • arrows_data_model_dict (dict): JSON dictionary from Arrows app export
    • Returns: DataModel object
  • export_to_arrows_json

    • Export a data model to Arrows app JSON format
    • Input:
      • data_model (DataModel): The data model to export
    • Returns: JSON string compatible with Arrows app

📚 Example Data Model Tools

These tools provide access to pre-built example data models for common use cases and domains.

  • list_example_data_models

    • List all available example data models with descriptions
    • Input: None
    • Returns: Dictionary with example names, descriptions, node/relationship counts, and usage instructions
  • get_example_data_model

    • Get an example graph data model from the available templates
    • Input:
      • example_name (str): Name of the example to load ('patient_journey', 'supply_chain', 'software_dependency', 'oil_gas_monitoring', 'customer_360', 'fraud_aml', or 'health_insurance_fraud')
    • Returns: ExampleDataModelResponse containing DataModel object and Mermaid visualization configuration

📝 Cypher Ingest Tools

These tools may be used to create Cypher ingest queries based on the data model. These queries may then be used by other MCP servers or applications to load data into Neo4j.

  • get_constraints_cypher_queries

    • Generate Cypher queries to create constraints (e.g., unique keys) for all nodes in the data model
    • Input:
      • data_model (DataModel): The data model to generate constraints for
    • Returns: List of Cypher statements for constraints
  • get_node_cypher_ingest_query

    • Generate a Cypher query to ingest a list of node records into Neo4j
    • Input:
      • node (Node): The node definition (label, key property, properties)
    • Returns: Parameterized Cypher query for bulk node ingestion (using $records)
  • get_relationship_cypher_ingest_query

    • Generate a Cypher query to ingest a list of relationship records into Neo4j
    • Input:
      • data_model (DataModel): The data model containing nodes and relationships
      • relationship_type (str): The type of the relationship
      • relationship_start_node_label (str): The label of the start node
      • relationship_end_node_label (str): The label of the end node
    • Returns: Parameterized Cypher query for bulk relationship ingestion (using $records)

🔧 Usage with Claude Desktop

💾 Released Package

Can be found on PyPi https://pypi.org/project/mcp-neo4j-data-modeling/

Add the server to your claude_desktop_config.json with the transport method specified:

"mcpServers": {
  "neo4j-data-modeling": {
    "command": "uvx",
    "args": [ "mcp-neo4j-data-modeling@0.3.0", "--transport", "stdio" ]
  }
}

🌐 HTTP Transport Mode

The server supports HTTP transport for web-based deployments and microservices:

# Basic HTTP mode (defaults: host=127.0.0.1, port=8000, path=/mcp/)
mcp-neo4j-data-modeling --transport http

# Custom HTTP configuration
mcp-neo4j-data-modeling --transport http --host 0.0.0.0 --port 8080 --path /api/mcp/

Environment variables for HTTP configuration:

export MCP_TRANSPORT=http
export NEO4J_MCP_SERVER_HOST=0.0.0.0
export NEO4J_MCP_SERVER_PORT=8080
export NEO4J_MCP_SERVER_PATH=/api/mcp/
mcp-neo4j-data-modeling

🔄 Transport Modes

The server supports three transport modes:

  • STDIO (default): Standard input/output for local tools and Claude Desktop
  • SSE: Server-Sent Events for web-based deployments
  • HTTP: Streamable HTTP for modern web deployments and microservices

🐳 Using with Docker

"mcpServers": {
  "neo4j-data-modeling": {
    "command": "docker",
    "args": [
      "run",
      "--rm",
      "mcp/neo4j-data-modeling:latest"
    ]
  }
}

🚀 Development

📦 Prerequisites

  1. Install uv (Universal Virtualenv):
# Using pip
pip install uv

# Using Homebrew on macOS
brew install uv

# Using cargo (Rust package manager)
cargo install uv
  1. Clone the repository and set up development environment:
# Clone the repository
git clone https://github.com/yourusername/mcp-neo4j-data-modeling.git
cd mcp-neo4j-data-modeling

# Create and activate virtual environment using uv
uv venv
source .venv/bin/activate  # On Unix/macOS
.venv\Scripts\activate     # On Windows

# Install dependencies including dev dependencies
uv pip install -e ".[dev]"
  1. Run Tests
./test.sh

🔧 Development Configuration

# Add the server to your claude_desktop_config.json
"mcpServers": {
  "neo4j-data-modeling": {
    "command": "uv",
    "args": [
      "--directory", "path_to_repo/src",
      "run", "mcp-neo4j-data-modeling", "--transport", "stdio"]
  }
}

🐳 Docker

Build and run the Docker container:

# Build the image
docker build -t mcp/neo4j-data-modeling:latest .

# Run the container
docker run mcp/neo4j-data-modeling:latest

📄 License

This MCP server is licensed under the MIT License. This means you are free to use, modify, and distribute the software, subject to the terms and conditions of the MIT License. For more details, please see the LICENSE file in the project repository.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

mcp_neo4j_data_modeling-0.3.0.tar.gz (179.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

mcp_neo4j_data_modeling-0.3.0-py3-none-any.whl (23.5 kB view details)

Uploaded Python 3

File details

Details for the file mcp_neo4j_data_modeling-0.3.0.tar.gz.

File metadata

File hashes

Hashes for mcp_neo4j_data_modeling-0.3.0.tar.gz
Algorithm Hash digest
SHA256 392c7bf22039e9bc9408c355bb6f7c9a12c67bac0e2f7c1f3e7f859160e5b6d3
MD5 841b424c27a7b0db0931d5822b049cff
BLAKE2b-256 23bcd78552857ada35cb416dfbe0ab341268de135d71d465ce3c1ce32f634dbc

See more details on using hashes here.

File details

Details for the file mcp_neo4j_data_modeling-0.3.0-py3-none-any.whl.

File metadata

File hashes

Hashes for mcp_neo4j_data_modeling-0.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 67616c9f02909bc89ea20c98f3987b63f988b793359d6e9c32c9c6ddacbf4ef6
MD5 70af727ab1d969a1cbd41dc39fd87d04
BLAKE2b-256 d45c1648b9d6f615673efc8329f0a3df5e999b7d052ddebc4122347535b2d096

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page