We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 95a9985 commit b8cdd1bCopy full SHA for b8cdd1b
servers/mcp-neo4j-cypher/Dockerfile
@@ -32,4 +32,4 @@ ENV NEO4J_MCP_SERVER_PATH="/api/mcp/"
32
EXPOSE 8000
33
34
# Command to run the server using the package entry point
35
-CMD ["mcp-neo4j-cypher"]
+CMD ["sh", "-c", "mcp-neo4j-cypher"]
servers/mcp-neo4j-cypher/Makefile
@@ -13,4 +13,8 @@ test-http:
13
test-all:
14
uv run pytest tests/ -v
15
16
+docker-build-deploy-local:
17
+ docker build -t mcp-neo4j-cypher:dev-latest .
18
+ docker run -p 8000:8000 mcp-neo4j-cypher:dev-latest
19
+
20
all: install-dev test-all
0 commit comments