A containerized version of "MCP Neo4j Server"
Repository: da-okazaki/mcp-neo4j-server
An MCP server that provides integration between Neo4j graph database and Claude Desktop, enabling graph database operations through natural language interactions.
The containers are built automatically and are available on the GitHub Container Registry.
- Pull the Docker image:
docker pull ghcr.io/metorial/mcp-container--da-okazaki--mcp-neo4j-server--mcp-neo-4-j-server
- Run the container:
docker run -i --rm \
-e NEO4J_URI=neo-4-j-uri -e NEO4J_USERNAME=neo-4-j-username -e NEO4J_PASSWORD=neo-4-j-password \
ghcr.io/metorial/mcp-container--da-okazaki--mcp-neo4j-server--mcp-neo-4-j-server "node ./build/index.js"
--rm
removes the container after it exits, so you don't have to clean up manually.-i
allows you to interact with the container in your terminal.
The container supports the following configuration options:
NEO4J_URI
NEO4J_USERNAME
NEO4J_PASSWORD
{
"mcpServers": {
"mcp-neo-4-j-server": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/metorial/mcp-container--da-okazaki--mcp-neo4j-server--mcp-neo-4-j-server",
"node ./build/index.js"
],
"env": {
"NEO4J_URI": "neo-4-j-uri",
"NEO4J_USERNAME": "neo-4-j-username",
"NEO4J_PASSWORD": "neo-4-j-password"
}
}
}
}
Please refer to the license provided in the project repository for more information.
Contributions are welcome! If you notice any issues or have suggestions for improvements, please open an issue or submit a pull request.
Containerized with ❤️ by Metorial