neo4j-server-remote
@dsimile
关于 neo4j-server-remote
mcp-neo4j-server-sse is an MCP server that uses Server-Sent Events (SSE) or STDIO as the transport protocol.
基本信息
配置
使用下面的配置,将此服务器添加到你的 MCP 客户端。
{
"mcpServers": {
"neo4j-remote": {
"type": "http",
"url": "http://0.0.0.0:8543/sse"
}
}
}工具
未检测到工具
工具是从 README 中自动提取的。维护者可以在 ## Tools 标题下列出工具,即可填充这部分内容。
概览
What is neo4j-server-remote?
neo4j-server-remote is a Model Context Protocol (MCP) server that provides database interaction and graph exploration capabilities through Neo4j. It uses Server-Sent Events (SSE) or STDIO as the transport protocol and enables execution of Cypher queries and analysis of complex domain data via remotely accessible databases. It is intended for developers integrating Neo4j with MCP‑compatible clients like Cline.
How to use neo4j-server-remote?
Clone the repository, ensure Python 3.12+ is installed, and run pip install -r requirements.txt. The server can be started in SSE mode (default) or STDIO mode using uv run with the appropriate Neo4j connection arguments (e.g., --url bolt://localhost:7687 --username neo4j --password neo4j123 --database neo4j). For client configuration, add the server entry to your cline_mcp_settings.json, specifying either the SSE URL or the STDIO command/args.
Key features of neo4j-server-remote
- Two transport modes: SSE (default) and STDIO
- Execute Cypher read queries with
read-neo4j-cypher - Execute updating queries with
write-neo4j-cypher - Retrieve graph schema via
get-neo4j-schema - Demo prompt
mcp-demofor guided database operations - Supports selecting remotely accessible Neo4j databases
Use cases of neo4j-server-remote
- Running read‑only Cypher queries to retrieve graph data
- Performing write operations (create/update nodes and relationships)
- Inspecting the schema of all node types, their attributes, and relationships
- Using the interactive demo prompt to explore the database interactively
- Integrating Neo4j graph analysis into an MCP‑enabled AI agent workflow
FAQ from neo4j-server-remote
What transport protocols does neo4j-server-remote support?
It supports Server‑Sent Events (SSE) as the default transport and STDIO as an alternative mode.
What tools does neo4j-server-remote provide?
Three core tools: read-neo4j-cypher (execute read queries), write-neo4j-cypher (execute update queries), and get-neo4j-schema (retrieve node types, attributes, and relationships).
What are the runtime prerequisites?
Python 3.12 or later and the dependencies listed in requirements.txt. Neo4j must be running and accessible for remote connections.
How do I configure it for the Cline client?
Add an entry to cline_mcp_settings.json. For SSE mode use "url": "http://0.0.0.0:8543/sse"; for STDIO mode specify the uv run command and arguments with mode set to stdio.
Is there a demo prompt available?
Yes, the server includes a prompt called mcp-demo that guides users through database operations and generates appropriate schemas and sample data.
其他 分类下的更多 MCP 服务器
Reactive Resume
amruthpillaiA one-of-a-kind resume builder that keeps your privacy in mind. Completely secure, customizable, portable, open-source and free forever. Try it out today!
🚀 Model Context Protocol (MCP) Curriculum for Beginners
microsoftThis open-source curriculum introduces the fundamentals of Model Context Protocol (MCP) through real-world, cross-language examples in .NET, Java, TypeScript, JavaScript, Rust and Python. Designed for developers, it focuses on practical techniques for building modular, scalable,
MCP Toolbox for Databases
googleapisMCP Toolbox for Databases is an open source MCP server for databases.
Awesome Mcp Servers
punkpeyeA collection of MCP servers.
Servers
modelcontextprotocolModel Context Protocol Servers
评论