N
Neo4j
Run Cypher queries against Neo4j graph databases.
·No reviews yet
Share:
About
Auto-generated
Neo4j is a Model Context Protocol server in the Data & Databases category. It lets AI assistants that speak MCP call its tools and read its resources over STDIO.
Example tools
Illustrative tool names — the actual tool set is defined by the server at runtime.
query
Run a read-only SQL query
list_tables
List tables in the connected database
describe_table
Return column info for a table
Screenshots
No screenshots yet.
Frequently Asked Questions
Common questions about Neo4j.
- What is the Neo4j MCP for?
- The Neo4j MCP allows you to execute Cypher queries against Neo4j graph databases. It provides an interface to interact with your graph data programmatically.
- Does the Neo4j MCP require an API key?
- Yes, this Neo4j MCP requires an API key for authentication. You will need to obtain and configure an API key to use its features.
- How do I install the Neo4j MCP in a client?
- Installation in a client like Cline or Cursor typically involves adding the MCP's repository URL and then enabling it through the client's extension or plugin manager. Specific steps depend on the client's interface.
- What capabilities does the Neo4j MCP expose?
- The Neo4j MCP primarily exposes the ability to run Cypher queries. This allows for data retrieval, manipulation, and schema management within a Neo4j database.
- What are the costs associated with using the Neo4j MCP?
- The Neo4j MCP itself is community-provided and open-source, implying no direct cost. However, costs may arise from the underlying Neo4j database instance and its hosting, which depends on your deployment.
- What is a prerequisite for using the Neo4j MCP?
- A key prerequisite for using this MCP is having an operational Neo4j graph database instance to connect to. This MCP acts as a client to an existing Neo4j service.
Install Neo4j
Claude Desktop
Add this to claude_desktop_config.json.
{
"mcpServers": {
"neo4j": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-neo4j"
]
}
}
}Cursor
Add this to ~/.cursor/mcp.json.
{
"mcpServers": {
"neo4j": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-neo4j"
]
}
}
}VS Code
Add this to your workspace settings.json.
{
"mcp.servers": {
"neo4j": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-neo4j"
]
}
}
}Reviews
Sign in to leave a review.
No reviews yet. Be the first!
Discussion(0)
No comments yet.