A simple Neo4j MCP server for creating graph data models.
Project description
🔍📊 Neo4j Data Modeling MCP Server
mcp-name: io.github.neo4j-contrib/mcp-neo4j-data-modeling
🌟 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.
This MCP server facilitates data modeling workflows like the one detailed below.
- Blue steps are handled by the agent
- Purple by the Data Modeling MCP server
- Green by the user
Demo
For an end to end demo using the Data Modeling and Cypher MCP servers to develop a data model, generate an ingest script, and validate use cases please check out this Github Repo.
🧩 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 validatereturn_validated(bool, optional): If True, returns the validated node object instead of True
- Returns: True if valid (or validated Node object if
return_validated=True), raises ValueError if invalid
-
validate_relationship- Validate a single relationship structure
- Input:
relationship(Relationship): The relationship to validatereturn_validated(bool, optional): If True, returns the validated relationship object instead of True
- Returns: True if valid (or validated Relationship object if
return_validated=True), raises ValueError if invalid
-
validate_data_model- Validate the entire data model structure
- Input:
data_model(DataModel): The data model to validatereturn_validated(bool, optional): If True, returns the validated data model object instead of True
- Returns: True if valid (or validated DataModel object if
return_validated=True), 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
-
load_from_owl_turtle- Load a data model from OWL Turtle format
- Input:
owl_turtle_str(str): OWL Turtle string representation of an ontology
- Returns: DataModel object with nodes and relationships extracted from the ontology
- Note: This conversion is lossy - OWL Classes become Nodes, ObjectProperties become Relationships, and DatatypeProperties become Node properties.
-
export_to_owl_turtle- Export a data model to OWL Turtle format
- Input:
data_model(DataModel): The data model to export
- Returns: String representation of the data model in OWL Turtle format
- Note: This conversion is lossy - Relationship properties are not preserved since OWL does not support properties on ObjectProperties
-
export_to_pydantic_models- Export a data model to Pydantic models
- Input:
data_model(DataModel): The data model to export
- Returns: String representation of the Pydantic models as a Python file, including imports and model definitions for nodes, relationships, and the complete data model
-
export_to_neo4j_graphrag_pkg_schema- Export a data model to Neo4j GraphRAG Python Package schema format
- Input:
data_model(DataModel): The data model to export
- Returns: Dictionary containing the Neo4j GraphRAG Python Package schema
-
load_from_neo4j_graphrag_pkg_schema- Load a data model from Neo4j GraphRAG Python Package schema format
- Input:
neo4j_graphrag_python_package_schema(dict): Neo4j GraphRAG Python Package schema dictionary
- Returns: DataModel object
📚 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 relationshipsrelationship_type(str): The type of the relationshiprelationship_start_node_label(str): The label of the start noderelationship_end_node_label(str): The label of the end node
- Returns: Parameterized Cypher query for bulk relationship ingestion (using
$records)
💡 Prompts
create_new_data_model- Provide a structured parameterized prompt for generating a new graph data model
- Input:
data_context(str): Description of the data and any specific details to focus onuse_cases(str): List of use cases for the data model to addressdesired_nodes(str, optional): Node labels to include in the data modeldesired_relationships(str, optional): Relationship types to include in the data model
- Returns: Structured prompt that guides the agent through a 3-step process: analysis of sample data and examples, generation of the data model with validation, and presentation of results with visualization
🔧 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.8.2", "--transport", "stdio" ]
}
}
🏷️ Namespacing Tools
The server supports namespacing the server tools:
"mcpServers": {
"neo4j-data-modeling-app1": {
"command": "uvx",
"args": [ "mcp-neo4j-data-modeling@0.8.2", "--transport", "stdio", "--namespace", "app1" ]
},
"neo4j-data-modeling-app2": {
"command": "uvx",
"args": [ "mcp-neo4j-data-modeling@0.8.2", "--transport", "stdio", "--namespace", "app2" ]
}
}
With namespacing enabled:
- Tools get prefixed:
app1-validate_node,app2-validate_node - Each namespace operates independently
🌐 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 127.0.0.1 --port 8080 --path /api/mcp/
# With namespace for multi-tenant deployment
mcp-neo4j-data-modeling --transport http --namespace myapp
Environment variables for HTTP configuration:
export MCP_TRANSPORT=http
export NEO4J_MCP_SERVER_HOST=127.0.0.1
export NEO4J_MCP_SERVER_PORT=8080
export NEO4J_MCP_SERVER_PATH=/api/mcp/
export NEO4J_NAMESPACE=myapp
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
Here we use the Docker Hub hosted Data Modeling MCP server image with stdio transport for use with Claude Desktop.
Config details:
-i: Interactive mode - keeps STDIN open for stdio transport communication--rm: Automatically remove container when it exits (cleanup)-p 8000:8000: Port mapping - maps host port 8000 to container port 8000NEO4J_TRANSPORT=stdio: Uses stdio transport for Claude Desktop compatibility
{
"mcpServers": {
"neo4j-data-modeling": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-p",
"8000:8000",
"-e", "NEO4J_TRANSPORT=stdio",
"-e", "NEO4J_NAMESPACE=myapp",
"mcp/neo4j-data-modeling:latest"
]
}
}
}
🐳 Docker Deployment
The Neo4j Data Modeling MCP server can be deployed using Docker for remote deployments. Docker deployment should use HTTP transport for web accessibility. In order to integrate this deployment with applications like Claude Desktop, you will have to use a proxy in your MCP configuration such as mcp-remote.
📦 Using Your Built Image
After building locally with docker build -t mcp-neo4j-data-modeling:latest .:
# Run with http transport (default for Docker)
docker run --rm -p 8000:8000 \
-e NEO4J_TRANSPORT="http" \
-e NEO4J_MCP_SERVER_HOST="0.0.0.0" \
-e NEO4J_MCP_SERVER_PORT="8000" \
-e NEO4J_MCP_SERVER_PATH="/mcp/" \
mcp/neo4j-data-modeling:latest
# Run with security middleware for production
docker run --rm -p 8000:8000 \
-e NEO4J_TRANSPORT="http" \
-e NEO4J_MCP_SERVER_HOST="0.0.0.0" \
-e NEO4J_MCP_SERVER_PORT="8000" \
-e NEO4J_MCP_SERVER_PATH="/mcp/" \
-e NEO4J_MCP_SERVER_ALLOWED_HOSTS="example.com,www.example.com" \
-e NEO4J_MCP_SERVER_ALLOW_ORIGINS="https://example.com" \
mcp/neo4j-data-modeling:latest
🔧 Environment Variables
| Variable | Default | Description |
|---|---|---|
NEO4J_TRANSPORT |
stdio (local), http (remote) |
Transport protocol (stdio, http, or sse) |
NEO4J_MCP_SERVER_HOST |
127.0.0.1 (local) |
Host to bind to |
NEO4J_MCP_SERVER_PORT |
8000 |
Port for HTTP/SSE transport |
NEO4J_MCP_SERVER_PATH |
/mcp/ |
Path for accessing MCP server |
NEO4J_NAMESPACE |
(empty - no prefix) | Namespace prefix for tool names (e.g., myapp-validate_node) |
NEO4J_MCP_SERVER_ALLOW_ORIGINS |
(empty - secure by default) | Comma-separated list of allowed CORS origins |
NEO4J_MCP_SERVER_ALLOWED_HOSTS |
localhost,127.0.0.1 |
Comma-separated list of allowed hosts (DNS rebinding protection) |
🌐 SSE Transport for Legacy Web Access
When using SSE transport (for legacy web clients), the server exposes an HTTP endpoint:
# Start the server with SSE transport
docker run -d -p 8000:8000 \
-e NEO4J_TRANSPORT="sse" \
-e NEO4J_MCP_SERVER_HOST="0.0.0.0" \
-e NEO4J_MCP_SERVER_PORT="8000" \
--name neo4j-data-modeling-mcp-server \
mcp-neo4j-data-modeling:latest
# Test the SSE endpoint
curl http://localhost:8000/sse
# Use with MCP Inspector
npx @modelcontextprotocol/inspector http://localhost:8000/sse
🚀 Development
📦 Prerequisites
- Install
uv(Universal Virtualenv):
# Using pip
pip install uv
# Using Homebrew on macOS
brew install uv
# Using cargo (Rust package manager)
cargo install uv
- 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]"
- 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
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file mcp_neo4j_data_modeling-0.8.2.tar.gz.
File metadata
- Download URL: mcp_neo4j_data_modeling-0.8.2.tar.gz
- Upload date:
- Size: 671.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
83bd251525aee3d45f4e02f61e76f8f7b1f38efee243c3c4e30b87be42aaa58b
|
|
| MD5 |
ec5d113cd4b37cea5facbb4b3ca6c50a
|
|
| BLAKE2b-256 |
8a93963b05b09452e129655607ecd40e5fb8c8ce2920db213154ab597cf932c1
|
File details
Details for the file mcp_neo4j_data_modeling-0.8.2-py3-none-any.whl.
File metadata
- Download URL: mcp_neo4j_data_modeling-0.8.2-py3-none-any.whl
- Upload date:
- Size: 35.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
01f1405aa7efe5e2e14db8de9ecedbecf1cadae49998485ac0af6e9695f9c7c4
|
|
| MD5 |
da9ac6f3e65cec1bf1e06d9a040fae4d
|
|
| BLAKE2b-256 |
b77fdde2ce16dfe4c95054a89e32a6a3ae20ba37bdcd65c812887c4401c065b7
|