Skip to content
Open
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: 2 additions & 2 deletions python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ dependencies = [
# Protobuf
# explicit typing extensions
"typing-extensions>=4.13",
"mcp>=1.26.0,<2.0",
"mcp>=1.26.0,<3.0",

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Widening to <3.0 admits mcp 2.x which has documented breaking changes (FastMCP→MCPServer, new Client API, removal of ClientSession). Without corresponding code adaptations or test results showing the existing MCP integration tests pass under mcp 2.x, this risks runtime failures. At minimum, please provide CI evidence that python/tests/ MCP-related tests pass with mcp>=2.0 installed, or add compatibility shims/tests.

]

### Optional dependencies
Expand Down Expand Up @@ -96,7 +96,7 @@ hugging_face = [
"torch==2.13.0"
]
mcp = [
"mcp>=1.8,<2.0",
"mcp>=1.8,<3.0",
]
milvus = [
"pymilvus >= 2.3,< 2.7",
Expand Down
Loading