Skip to content

Commit 8e02fc1

Browse files
chore: update LATEST_PROTOCOL_VERSION to 2025-11-25 (#1715)
1 parent d3a1841 commit 8e02fc1

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/mcp/shared/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
from mcp.types import LATEST_PROTOCOL_VERSION
22

3-
SUPPORTED_PROTOCOL_VERSIONS: list[str] = ["2024-11-05", "2025-03-26", LATEST_PROTOCOL_VERSION]
3+
SUPPORTED_PROTOCOL_VERSIONS: list[str] = ["2024-11-05", "2025-03-26", "2025-06-18", LATEST_PROTOCOL_VERSION]

src/mcp/types.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
not separate types in the schema.
2525
"""
2626

27-
LATEST_PROTOCOL_VERSION = "2025-06-18"
27+
LATEST_PROTOCOL_VERSION = "2025-11-25"
2828

2929
"""
3030
The default negotiated version of the Model Context Protocol when no version is specified.

tests/issues/test_1027_win_unreachable_cleanup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ def echo(text: str) -> str:
9595
async with ClientSession(read, write) as session:
9696
# Initialize the session
9797
result = await session.initialize()
98-
assert result.protocolVersion in ["2024-11-05", "2025-06-18"]
98+
assert result.protocolVersion in ["2024-11-05", "2025-06-18", "2025-11-25"]
9999

100100
# Verify startup marker was created
101101
assert Path(startup_marker).exists(), "Server startup marker not created"

0 commit comments

Comments
 (0)