Set 2025-03-26 as the latest protocol version (#719)

This commit is contained in:
ihrpr
2025-05-15 09:29:54 +01:00
committed by GitHub
parent b3fbee9c48
commit 13f018264c
3 changed files with 132 additions and 2 deletions

View File

@@ -1,3 +1,3 @@
from mcp.types import LATEST_PROTOCOL_VERSION
SUPPORTED_PROTOCOL_VERSIONS: tuple[int, str] = (1, LATEST_PROTOCOL_VERSION)
SUPPORTED_PROTOCOL_VERSIONS: list[str] = ["2024-11-05", LATEST_PROTOCOL_VERSION]

View File

@@ -29,7 +29,7 @@ for reference.
not separate types in the schema.
"""
LATEST_PROTOCOL_VERSION = "2024-11-05"
LATEST_PROTOCOL_VERSION = "2025-03-26"
ProgressToken = str | int
Cursor = str