Skip to content

Commit 600859f

Browse files
dsp-antclaude
andauthored
chore: update protocol version to 2025-11-25 (#1218)
Co-authored-by: Claude <noreply@anthropic.com>
1 parent bfad917 commit 600859f

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

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)