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 4
4
5
5
### Changed
6
6
7
+ ### Added
8
+
9
+ ## v0.2.0
10
+
7
11
### Added
8
12
* Add HTTP transport option
9
13
* Migrate to FastMCP v2.x
Original file line number Diff line number Diff line change @@ -27,18 +27,18 @@ clean:
27
27
rm -rf .pytest_cache/
28
28
29
29
install-dev :
30
- python3 -m uv pip install -e .
30
+ uv pip install -e .
31
31
32
32
test-unit :
33
- python3 -m pytest tests/unit/ -v
33
+ uv run pytest tests/unit/ -v
34
34
35
35
test-integration :
36
- python3 -m pytest tests/integration/ -v
36
+ uv run pytest tests/integration/ -v
37
37
38
38
test-http :
39
- python3 -m pytest tests/integration/test_http_transport.py -v
39
+ uv run pytest tests/integration/test_http_transport.py -v
40
40
41
41
test-all :
42
- python3 -m pytest tests/ -v
42
+ uv run pytest tests/ -v
43
43
44
44
all : 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
114
114
"mcpServers" : {
115
115
"neo4j-data-modeling" : {
116
116
"command" : " uvx" ,
117
- "args" : [ " mcp-neo4j-data-modeling@0.1.1 " , " --transport" , " stdio" ]
117
+ "args" : [ " mcp-neo4j-data-modeling@0.2.0 " , " --transport" , " stdio" ]
118
118
}
119
119
}
120
120
```
Original file line number Diff line number Diff line change 1
1
[project ]
2
2
name = " mcp-neo4j-data-modeling"
3
- version = " 0.1.1 "
3
+ version = " 0.2.0 "
4
4
description = " A simple Neo4j MCP server for creating graph data models."
5
5
readme = " README.md"
6
6
requires-python = " >=3.10"
7
7
dependencies = [
8
- " fastmcp[cli] >=2.0.0" ,
8
+ " fastmcp>=2.0.0" ,
9
9
" pydantic>=2.10.1" ,
10
10
]
11
11
You can’t perform that action at this time.
0 commit comments