Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions servers/mcp-neo4j-cypher/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@

### Changed

### Added

## v0.4.1

### Added
* Add env variable `NEO4J_READ_ONLY` and cli variable `--read-only` to configure tool availability

Expand Down
8 changes: 4 additions & 4 deletions servers/mcp-neo4j-cypher/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ Add the server to your `claude_desktop_config.json` with the database connection
"mcpServers": {
"neo4j-database": {
"command": "uvx",
"args": [ "mcp-neo4j-cypher@0.4.0", "--transport", "stdio" ],
"args": [ "mcp-neo4j-cypher@0.4.1", "--transport", "stdio" ],
"env": {
"NEO4J_URI": "bolt://localhost:7687",
"NEO4J_USERNAME": "neo4j",
Expand Down Expand Up @@ -255,7 +255,7 @@ Here's an example of connecting to multiple Neo4j databases using namespaces:
"mcpServers": {
"movies-neo4j": {
"command": "uvx",
"args": ["mcp-neo4j-cypher@0.4.0", "--namespace", "movies"],
"args": ["mcp-neo4j-cypher@0.4.1", "--namespace", "movies"],
"env": {
"NEO4J_URI": "neo4j+s://demo.neo4jlabs.com",
"NEO4J_USERNAME": "recommendations",
Expand All @@ -265,7 +265,7 @@ Here's an example of connecting to multiple Neo4j databases using namespaces:
},
"local-neo4j": {
"command": "uvx",
"args": ["mcp-neo4j-cypher@0.4.0"],
"args": ["mcp-neo4j-cypher@0.4.1"],
"env": {
"NEO4J_URI": "bolt://localhost:7687",
"NEO4J_USERNAME": "neo4j",
Expand Down Expand Up @@ -293,7 +293,7 @@ Syntax with `--db-url`, `--username`, `--password`, `--read-timeout` and other c
"neo4j": {
"command": "uvx",
"args": [
"mcp-neo4j-cypher@0.4.0",
"mcp-neo4j-cypher@0.4.1",
"--db-url",
"bolt://localhost",
"--username",
Expand Down
2 changes: 1 addition & 1 deletion servers/mcp-neo4j-cypher/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"dxt_version": "0.1",
"name": "mcp-neo4j-cypher",
"display_name": "Neo4j Cypher MCP Server",
"version": "0.4.0",
"version": "0.4.1",
"description": "Execute read and write Cypher queries on your Neo4j database.",
"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.",
"author": {
Expand Down
2 changes: 1 addition & 1 deletion servers/mcp-neo4j-cypher/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "mcp-neo4j-cypher"
version = "0.4.0"
version = "0.4.1"
description = "A simple Neo4j MCP server"
readme = "README.md"
requires-python = ">=3.10"
Expand Down
2 changes: 1 addition & 1 deletion servers/mcp-neo4j-cypher/uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.