labels, relationship types, property keys), and a connectivity ping. Use it for relationship analytics, knowledge graphs, recommendation pipelines, org-chart lookups, and graph-aware agents — often feeding tabular summaries into Postgres or MySQL.
Prerequisites
- A Neo4j database (self-hosted, Aura, or compatible) reachable over Bolt
- Bolt URI (
bolt://,bolt+s://,neo4j://, orneo4j+s://) - Database username and password with appropriate roles
- Optional target
Databasename for multi-database deployments (Neo4j 4+) - project_contributor access
Connect in AgentRuntime
1
Create a connection
Go to Connections and click New custom connection to create a connection with your Neo4j Bolt credentials:
URI— e.g.bolt+s://xxxx.databases.neo4j.io(Aura) orbolt://localhost:7687Username/Password— database authenticationDatabase— target database name (optional; defaults toneo4j)
2
Add neo4j MCP instance
Go to MCP, click Add instance for neo4j, wire your connection on Instance config, set the profile active, and save.
3
Test with a ping
Add a workflow with mcp_call →
neo4j_ping. Run it to confirm Bolt connectivity before Cypher queries.4
Inspect graph schema (optional)
Run mcp_call →
neo4j_schema to list labels, relationship types, and property keys before building traversal queries.What you can build
- Recommendation engine —
neo4j_query_readtraverse product → category → co-purchase paths → LLM ranks suggestions. - Org chart lookup —
neo4j_query_readon(:Person)-[:REPORTS_TO*]->(:Person)→ answer manager-chain questions in Autopilot. - Graph enrichment — External API data →
neo4j_execute_writeMERGE nodes and relationships from webhook payloads. - Schema-aware agents —
neo4j_schemalist labels and relationship types → grounded Cypher generation with read-only queries.
Tools
Example
Find collaborators two hops away from a user:Configuration
Troubleshooting
Related
- Integrations quickstart
- Postgres connector — relational store alongside graph analytics
- MySQL connector — SQL reporting on tabular data linked to graph entities
- Connector catalog
- Troubleshooting