Skip to content

Commit 16da806

Browse files
authored
cypher - prep v0.5.0 (#212)
1 parent 024b4d6 commit 16da806

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.5.0
10+
711
### Added
812
* Add `NEO4J_SCHEMA_SAMPLE_SIZE` env variable and `schema-sample-size` cli argument to configure the `get_neo4j_schema` sample size
913
* Update write query detection to include `INSERT` in regex check

servers/mcp-neo4j-cypher/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ Add the server to your `claude_desktop_config.json` with the database connection
269269
"mcpServers": {
270270
"neo4j-database": {
271271
"command": "uvx",
272-
"args": [ "mcp-neo4j-cypher@0.4.1", "--transport", "stdio" ],
272+
"args": [ "mcp-neo4j-cypher@0.5.0", "--transport", "stdio" ],
273273
"env": {
274274
"NEO4J_URI": "bolt://localhost:7687",
275275
"NEO4J_USERNAME": "neo4j",
@@ -313,7 +313,7 @@ Here's an example of connecting to multiple Neo4j databases using namespaces:
313313
"mcpServers": {
314314
"movies-neo4j": {
315315
"command": "uvx",
316-
"args": ["mcp-neo4j-cypher@0.4.1", "--namespace", "movies"],
316+
"args": ["mcp-neo4j-cypher@0.5.0", "--namespace", "movies"],
317317
"env": {
318318
"NEO4J_URI": "neo4j+s://demo.neo4jlabs.com",
319319
"NEO4J_USERNAME": "recommendations",
@@ -323,7 +323,7 @@ Here's an example of connecting to multiple Neo4j databases using namespaces:
323323
},
324324
"local-neo4j": {
325325
"command": "uvx",
326-
"args": ["mcp-neo4j-cypher@0.4.1"],
326+
"args": ["mcp-neo4j-cypher@0.5.0"],
327327
"env": {
328328
"NEO4J_URI": "bolt://localhost:7687",
329329
"NEO4J_USERNAME": "neo4j",
@@ -351,7 +351,7 @@ Syntax with `--db-url`, `--username`, `--password`, `--read-timeout` and other c
351351
"neo4j": {
352352
"command": "uvx",
353353
"args": [
354-
"mcp-neo4j-cypher@0.4.1",
354+
"mcp-neo4j-cypher@0.5.0",
355355
"--db-url",
356356
"bolt://localhost",
357357
"--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.1",
5+
"version": "0.5.0",
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.1"
3+
version = "0.5.0"
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)