Skip to content

Commit 70ed750

Browse files
authored
data modeling - bump version to 0.2.0, clean deps, update changelog (#111)
1 parent 2cff60f commit 70ed750

File tree

5 files changed

+1157
-1153
lines changed

5 files changed

+1157
-1153
lines changed

servers/mcp-neo4j-data-modeling/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.2.0
10+
711
### Added
812
* Add HTTP transport option
913
* Migrate to FastMCP v2.x

servers/mcp-neo4j-data-modeling/Makefile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,18 +27,18 @@ clean:
2727
rm -rf .pytest_cache/
2828

2929
install-dev:
30-
python3 -m uv pip install -e .
30+
uv pip install -e .
3131

3232
test-unit:
33-
python3 -m pytest tests/unit/ -v
33+
uv run pytest tests/unit/ -v
3434

3535
test-integration:
36-
python3 -m pytest tests/integration/ -v
36+
uv run pytest tests/integration/ -v
3737

3838
test-http:
39-
python3 -m pytest tests/integration/test_http_transport.py -v
39+
uv run pytest tests/integration/test_http_transport.py -v
4040

4141
test-all:
42-
python3 -m pytest tests/ -v
42+
uv run pytest tests/ -v
4343

4444
all: install-dev test-all

servers/mcp-neo4j-data-modeling/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
```

servers/mcp-neo4j-data-modeling/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
[project]
22
name = "mcp-neo4j-data-modeling"
3-
version = "0.1.1"
3+
version = "0.2.0"
44
description = "A simple Neo4j MCP server for creating graph data models."
55
readme = "README.md"
66
requires-python = ">=3.10"
77
dependencies = [
8-
"fastmcp[cli]>=2.0.0",
8+
"fastmcp>=2.0.0",
99
"pydantic>=2.10.1",
1010
]
1111

0 commit comments

Comments
 (0)