Skip to content

Commit 2a2709a

Browse files
Merge branch 'main' into feat/elicitation-sampling-streaming
2 parents 26ebf24 + 6dd7cd4 commit 2a2709a

File tree

4 files changed

+8
-7
lines changed

4 files changed

+8
-7
lines changed

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@modelcontextprotocol/sdk",
3-
"version": "1.24.0",
3+
"version": "1.24.1",
44
"description": "Model Context Protocol implementation for TypeScript",
55
"license": "MIT",
66
"author": "Anthropic, PBC (https://anthropic.com)",

src/types.test.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,16 @@ import {
2020
describe('Types', () => {
2121
test('should have correct latest protocol version', () => {
2222
expect(LATEST_PROTOCOL_VERSION).toBeDefined();
23-
expect(LATEST_PROTOCOL_VERSION).toBe('2025-06-18');
23+
expect(LATEST_PROTOCOL_VERSION).toBe('2025-11-25');
2424
});
2525
test('should have correct supported protocol versions', () => {
2626
expect(SUPPORTED_PROTOCOL_VERSIONS).toBeDefined();
2727
expect(SUPPORTED_PROTOCOL_VERSIONS).toBeInstanceOf(Array);
2828
expect(SUPPORTED_PROTOCOL_VERSIONS).toContain(LATEST_PROTOCOL_VERSION);
29+
expect(SUPPORTED_PROTOCOL_VERSIONS).toContain('2025-06-18');
30+
expect(SUPPORTED_PROTOCOL_VERSIONS).toContain('2025-03-26');
2931
expect(SUPPORTED_PROTOCOL_VERSIONS).toContain('2024-11-05');
3032
expect(SUPPORTED_PROTOCOL_VERSIONS).toContain('2024-10-07');
31-
expect(SUPPORTED_PROTOCOL_VERSIONS).toContain('2025-03-26');
3233
});
3334

3435
describe('ResourceLink', () => {

src/types.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
import * as z from 'zod/v4';
22
import { AuthInfo } from './server/auth/types.js';
33

4-
export const LATEST_PROTOCOL_VERSION = '2025-06-18';
4+
export const LATEST_PROTOCOL_VERSION = '2025-11-25';
55
export const DEFAULT_NEGOTIATED_PROTOCOL_VERSION = '2025-03-26';
6-
export const SUPPORTED_PROTOCOL_VERSIONS = [LATEST_PROTOCOL_VERSION, '2025-03-26', '2024-11-05', '2024-10-07'];
6+
export const SUPPORTED_PROTOCOL_VERSIONS = [LATEST_PROTOCOL_VERSION, '2025-06-18', '2025-03-26', '2024-11-05', '2024-10-07'];
77

88
export const RELATED_TASK_META_KEY = 'io.modelcontextprotocol/related-task';
99

0 commit comments

Comments
 (0)