Skip to content

Commit 9c42e4d

Browse files
authored
Merge pull request #23 from neo4j-contrib/fix-readme-cypher-mcp
Fix readme cypher mcp
2 parents d00ad41 + 1d0cdc3 commit 9c42e4d

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

servers/mcp-neo4j-cypher/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ Add the server to your `claude_desktop_config.json` with configuration through e
4343
"mcpServers": {
4444
"neo4j-aura": {
4545
"command": "uvx",
46-
"args": [ "mcp-neo4j-cypher==0.2.0" ],
46+
"args": [ "mcp-neo4j-cypher@0.2.1" ],
4747
"env": {
4848
"NEO4J_URI": "bolt://localhost:7687",
4949
"NEO4J_USERNAME": "neo4j",
@@ -61,7 +61,7 @@ Here is an example connection for the movie database with Movie, Person (Actor,
6161
"mcpServers": {
6262
"movies-neo4j": {
6363
"command": "uvx",
64-
"args": ["mcp-neo4j-cypher==0.2.0"],
64+
"args": ["mcp-neo4j-cypher@0.2.1"],
6565
"env": {
6666
"NEO4J_URI": "neo4j+s://demo.neo4jlabs.com",
6767
"NEO4J_USERNAME": "recommendations",
@@ -82,7 +82,7 @@ Syntax with `--db-url`, `--username` and `--password` command line arguments is
8282
"neo4j": {
8383
"command": "uvx",
8484
"args": [
85-
"mcp-neo4j-cypher==0.1.1",
85+
"mcp-neo4j-cypher@0.1.1",
8686
"--db-url",
8787
"bolt://localhost",
8888
"--username",
@@ -101,7 +101,7 @@ Here is an example connection for the movie database with Movie, Person (Actor,
101101
"mcpServers": {
102102
"movies-neo4j": {
103103
"command": "uvx",
104-
"args": ["mcp-neo4j-cypher==0.1.2",
104+
"args": ["mcp-neo4j-cypher@0.1.1",
105105
"--db-url", "neo4j+s://demo.neo4jlabs.com",
106106
"--user", "recommendations",
107107
"--password", "recommendations"]
@@ -123,7 +123,7 @@ Here is an example connection for the movie database with Movie, Person (Actor,
123123
"-e", "NEO4J_URI=bolt://host.docker.internal:7687",
124124
"-e", "NEO4J_USERNAME=neo4j",
125125
"-e", "NEO4J_PASSWORD=<your-password>",
126-
"mcp/neo4j-cypher:0.2.0"
126+
"mcp/neo4j-cypher:latest"
127127
]
128128
}
129129
}

servers/mcp-neo4j-cypher/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "mcp-neo4j-cypher"
3-
version = "0.2.0"
3+
version = "0.2.1"
44
description = "A simple Neo4j MCP server"
55
readme = "README.md"
66
requires-python = ">=3.10"

0 commit comments

Comments
 (0)