Skip to content

Commit fb41a1d

Browse files
dsp-antclaude
andcommitted
docs: Remove '(Final)' from protocol revision references
Only keep '(Final)' in the original revision document where its status is now explicitly noted. 🤖 Generated with Claude CLI. Co-Authored-By: Claude <[email protected]>
1 parent c862b1d commit fb41a1d

File tree

17 files changed

+17
-17
lines changed

17 files changed

+17
-17
lines changed

docs/specification/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ weight: 10
66
---
77

88
{{< callout type="info" >}}
9-
**Protocol Revision**: 2024-11-05 (Final)
9+
**Protocol Revision**: 2024-11-05
1010
{{< /callout >}}
1111

1212
The Model Context Protocol (MCP) is an open protocol that enables seamless integration between LLM applications and external data sources and tools. Whether you're building an AI-powered IDE, enhancing a chat interface, or creating custom AI workflows, MCP provides a standardized way to connect LLMs with the context they need. This specification defines the authoritative protocol requirements based on the TypeScript schema in [schema.ts](https://github.com/modelcontextprotocol/specification/blob/main/schema/schema.ts). For implementation guides and examples, visit [modelcontextprotocol.io](https://modelcontextprotocol.io).

docs/specification/basic/lifecycle.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ weight: 30
55
---
66

77
{{< callout type="info" >}}
8-
**Protocol Revision**: 2024-11-05 (Final)
8+
**Protocol Revision**: 2024-11-05
99
{{< /callout >}}
1010

1111
The Model Context Protocol (MCP) defines a rigorous lifecycle for client-server connections that ensures proper capability negotiation and state management. This lifecycle consists of four distinct phases:

docs/specification/basic/messages.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ type: docs
44
weight: 20
55
---
66
{{< callout type="info" >}}
7-
**Protocol Revision**: 2024-11-05 (Final)
7+
**Protocol Revision**: 2024-11-05
88
{{< /callout >}}
99

1010
All messages in MCP **MUST** follow the [JSON-RPC 2.0](https://www.jsonrpc.org/specification) specification. The protocol defines three types of messages:

docs/specification/basic/transports.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ type: docs
44
weight: 40
55
---
66
{{< callout type="info" >}}
7-
**Protocol Revision**: 2024-11-05 (Final)
7+
**Protocol Revision**: 2024-11-05
88
{{< /callout >}}
99

1010
MCP supports multiple transport mechanisms for client-server communication. The two standard transport mechanisms are STDIO and HTTP with Server-Sent Events (SSE). We recommend clients to support at least STDIO.

docs/specification/basic/utilities/cancellation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ weight: 10
44
---
55

66
{{< callout type="info" >}}
7-
**Protocol Revision**: 2024-11-05 (Final)
7+
**Protocol Revision**: 2024-11-05
88
{{< /callout >}}
99

1010
The Model Context Protocol (MCP) supports optional cancellation of in-progress requests through notification messages. Either side can send a cancellation notification to indicate that a previously-issued request should be terminated.

docs/specification/basic/utilities/pagination.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Pagination
33
weight: 20
44
---
55
{{< callout type="info" >}}
6-
**Protocol Revision**: 2024-11-05 (Final)
6+
**Protocol Revision**: 2024-11-05
77
{{< /callout >}}
88

99
The Model Context Protocol (MCP) supports pagination for list operations that may return large result sets. Pagination allows clients to retrieve results in smaller chunks rather than all at once.

docs/specification/basic/utilities/ping.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ weight: 5
44
---
55

66
{{< callout type="info" >}}
7-
**Protocol Revision**: 2024-11-05 (Final)
7+
**Protocol Revision**: 2024-11-05
88
{{< /callout >}}
99

1010
The Model Context Protocol includes an optional ping mechanism that allows either party to verify that their counterpart is still responsive and the connection is alive.

docs/specification/basic/utilities/progress.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Progress
33
weight: 30
44
---
55
{{< callout type="info" >}}
6-
**Protocol Revision**: 2024-11-05 (Final)
6+
**Protocol Revision**: 2024-11-05
77
{{< /callout >}}
88

99
The Model Context Protocol (MCP) supports optional progress tracking for long-running operations through notification messages. Either side can send progress notifications to provide updates about operation status.

docs/specification/basic/versioning.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ type: docs
44
weight: 80
55
---
66
{{< callout type="info" >}}
7-
**Protocol Revision**: 2024-11-05 (Final)
7+
**Protocol Revision**: 2024-11-05
88
{{< /callout >}}
99

1010
The Model Context Protocol uses string-based version identifiers following the format `YYYY-MM-DD` to indicate the last date significant changes were made. The current protocol version is `2024-11-05`.

docs/specification/client/roots.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ weight: 40
55
---
66

77
{{< callout type="info" >}}
8-
**Protocol Revision**: 2024-11-05 (Final)
8+
**Protocol Revision**: 2024-11-05
99
{{< /callout >}}
1010

1111
The Model Context Protocol (MCP) provides a standardized way for clients to expose filesystem roots to servers. Roots define the boundaries of where servers can operate within the filesystem, allowing them to understand which directories and files they have access to. Servers can request the list of roots from supporting clients and receive notifications when that list changes.

0 commit comments

Comments
 (0)