File tree Expand file tree Collapse file tree 5 files changed +1157
-1153
lines changed
servers/mcp-neo4j-data-modeling Expand file tree Collapse file tree 5 files changed +1157
-1153
lines changed Original file line number Diff line number Diff line change 44
55### Changed
66
7+ ### Added
8+
9+ ## v0.2.0
10+
711### Added
812* Add HTTP transport option
913* Migrate to FastMCP v2.x
Original file line number Diff line number Diff line change @@ -27,18 +27,18 @@ clean:
2727 rm -rf .pytest_cache/
2828
2929install-dev :
30- python3 -m uv pip install -e .
30+ uv pip install -e .
3131
3232test-unit :
33- python3 -m pytest tests/unit/ -v
33+ uv run pytest tests/unit/ -v
3434
3535test-integration :
36- python3 -m pytest tests/integration/ -v
36+ uv run pytest tests/integration/ -v
3737
3838test-http :
39- python3 -m pytest tests/integration/test_http_transport.py -v
39+ uv run pytest tests/integration/test_http_transport.py -v
4040
4141test-all :
42- python3 -m pytest tests/ -v
42+ uv run pytest tests/ -v
4343
4444all : install-dev test-all
Original file line number Diff line number Diff line change @@ -114,7 +114,7 @@ Add the server to your `claude_desktop_config.json` with the transport method sp
114114"mcpServers" : {
115115 "neo4j-data-modeling" : {
116116 "command" : " uvx" ,
117- "args" : [ " mcp-neo4j-data-modeling@0.1.1 " , " --transport" , " stdio" ]
117+ "args" : [ " mcp-neo4j-data-modeling@0.2.0 " , " --transport" , " stdio" ]
118118 }
119119}
120120```
Original file line number Diff line number Diff line change 11[project ]
22name = " mcp-neo4j-data-modeling"
3- version = " 0.1.1 "
3+ version = " 0.2.0 "
44description = " A simple Neo4j MCP server for creating graph data models."
55readme = " README.md"
66requires-python = " >=3.10"
77dependencies = [
8- " fastmcp[cli] >=2.0.0" ,
8+ " fastmcp>=2.0.0" ,
99 " pydantic>=2.10.1" ,
1010]
1111
You can’t perform that action at this time.
0 commit comments