Skip to content

Commit 7cb1af4

Browse files
authored
cypher - prep v0.4.1 (#194)
1 parent f35ce3a commit 7cb1af4

File tree

5 files changed

+11
-7
lines changed

5 files changed

+11
-7
lines changed

servers/mcp-neo4j-cypher/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@
44

55
### Changed
66

7+
### Added
8+
9+
## v0.4.1
10+
711
### Added
812
* Add env variable `NEO4J_READ_ONLY` and cli variable `--read-only` to configure tool availability
913

servers/mcp-neo4j-cypher/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ Add the server to your `claude_desktop_config.json` with the database connection
211211
"mcpServers": {
212212
"neo4j-database": {
213213
"command": "uvx",
214-
"args": [ "[email protected].0", "--transport", "stdio" ],
214+
"args": [ "[email protected].1", "--transport", "stdio" ],
215215
"env": {
216216
"NEO4J_URI": "bolt://localhost:7687",
217217
"NEO4J_USERNAME": "neo4j",
@@ -255,7 +255,7 @@ Here's an example of connecting to multiple Neo4j databases using namespaces:
255255
"mcpServers": {
256256
"movies-neo4j": {
257257
"command": "uvx",
258-
"args": ["[email protected].0", "--namespace", "movies"],
258+
"args": ["[email protected].1", "--namespace", "movies"],
259259
"env": {
260260
"NEO4J_URI": "neo4j+s://demo.neo4jlabs.com",
261261
"NEO4J_USERNAME": "recommendations",
@@ -265,7 +265,7 @@ Here's an example of connecting to multiple Neo4j databases using namespaces:
265265
},
266266
"local-neo4j": {
267267
"command": "uvx",
268-
"args": ["[email protected].0"],
268+
"args": ["[email protected].1"],
269269
"env": {
270270
"NEO4J_URI": "bolt://localhost:7687",
271271
"NEO4J_USERNAME": "neo4j",
@@ -293,7 +293,7 @@ Syntax with `--db-url`, `--username`, `--password`, `--read-timeout` and other c
293293
"neo4j": {
294294
"command": "uvx",
295295
"args": [
296-
296+
297297
"--db-url",
298298
"bolt://localhost",
299299
"--username",

servers/mcp-neo4j-cypher/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"dxt_version": "0.1",
33
"name": "mcp-neo4j-cypher",
44
"display_name": "Neo4j Cypher MCP Server",
5-
"version": "0.4.0",
5+
"version": "0.4.1",
66
"description": "Execute read and write Cypher queries on your Neo4j database.",
77
"long_description": "A Model Context Protocol (MCP) server that provides tools for interacting with Neo4j graph databases using Cypher queries. Supports both read and write operations with proper validation and error handling.",
88
"author": {

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.4.0"
3+
version = "0.4.1"
44
description = "A simple Neo4j MCP server"
55
readme = "README.md"
66
requires-python = ">=3.10"

servers/mcp-neo4j-cypher/uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)