Skip to content

Commit 08d36bd

Browse files
bigeric08Assistant
andauthored
Fix #651: Add explicit mcp>=1.24.0 dependency for protocol version 2025-11-25 support (#652)
The server was crashing when Claude Desktop sent protocolVersion 2025-11-25 because older versions of the mcp library (< 1.24.0) don't support this protocol version. This change adds an explicit dependency on mcp>=1.24.0 to ensure the server always has the required protocol version support. Co-authored-by: Assistant <assistant@example.com>
1 parent ad00b18 commit 08d36bd

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ classifiers = [
2525

2626
dependencies = [
2727
"fastmcp>=2.11.0,<3.0.0", # Pin: v3.0.0 has breaking changes (see #644, #645, #648)
28+
"mcp>=1.24.0", # Required for protocol version 2025-11-25 support (see #651)
2829
"httpx[socks]>=0.27.0,<1.0",
2930
'jq>=1.8.0; sys_platform != "win32"',
3031
"pydantic>=2.5.0",

0 commit comments

Comments
 (0)