Skip to content

Commit ee43d38

Browse files
authored
update versions (#139)
1 parent cef9c10 commit ee43d38

File tree

5 files changed

+13
-7
lines changed

5 files changed

+13
-7
lines changed

servers/mcp-neo4j-cypher/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
### Fixed
44

5+
### Changed
6+
7+
### Added
8+
9+
## v0.3.1
10+
511
### Changed
612
* Update Neo4j Driver syntax to use `driver.execute_query(...)`. This cleans the driver code.
713

servers/mcp-neo4j-cypher/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ Add the server to your `claude_desktop_config.json` with the database connection
9090
"mcpServers": {
9191
"neo4j-database": {
9292
"command": "uvx",
93-
"args": [ "[email protected].0", "--transport", "stdio" ],
93+
"args": [ "[email protected].1", "--transport", "stdio" ],
9494
"env": {
9595
"NEO4J_URI": "bolt://localhost:7687",
9696
"NEO4J_USERNAME": "neo4j",
@@ -126,7 +126,7 @@ Here's an example of connecting to multiple Neo4j databases using namespaces:
126126
"mcpServers": {
127127
"movies-neo4j": {
128128
"command": "uvx",
129-
"args": ["[email protected].0", "--namespace", "movies"],
129+
"args": ["[email protected].1", "--namespace", "movies"],
130130
"env": {
131131
"NEO4J_URI": "neo4j+s://demo.neo4jlabs.com",
132132
"NEO4J_USERNAME": "recommendations",
@@ -136,7 +136,7 @@ Here's an example of connecting to multiple Neo4j databases using namespaces:
136136
},
137137
"local-neo4j": {
138138
"command": "uvx",
139-
"args": ["[email protected].0"],
139+
"args": ["[email protected].1"],
140140
"env": {
141141
"NEO4J_URI": "bolt://localhost:7687",
142142
"NEO4J_USERNAME": "neo4j",
@@ -164,7 +164,7 @@ Syntax with `--db-url`, `--username`, `--password` and other command line argume
164164
"neo4j": {
165165
"command": "uvx",
166166
"args": [
167-
167+
168168
"--db-url",
169169
"bolt://localhost",
170170
"--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.3.0",
5+
"version": "0.3.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.3.0"
3+
version = "0.3.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)