Skip to content
Merged
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
5 changes: 4 additions & 1 deletion mcp/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,10 @@ classifiers = [
"License :: OSI Approved :: Apache Software License",
]
dependencies = [
"mcp>=1.0.0",
# Upper bound is deliberate: the server imports `mcp.server.fastmcp`, which mcp 2.x no longer
# exposes at that path. An unbounded floor let CI silently install the new major and break the
# import. Lift this only together with the 2.x import path.
"mcp>=1.0.0,<2",
]

[project.scripts]
Expand Down
Loading