You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+10-10Lines changed: 10 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,10 +11,10 @@
11
11
12
12
A type-safe Rust implementation of the official Model Context Protocol (MCP) schema, supporting all official MCP Protocol versions:
13
13
14
-
-`2025_11_25`
15
-
-`2025_06_18`
16
-
-`2025_03_26`
17
-
-`2024_11_05`
14
+
-`2025-11-25`
15
+
-`2025-06-18`
16
+
-`2025-03-26`
17
+
-`2024-11-05`
18
18
-`draft`
19
19
20
20
The MCP schemas in this repository are [automatically generated](#how-are-schemas-generated) from the official Model Context Protocol, ensuring they are always up-to-date and aligned with the latest official specifications.
@@ -52,7 +52,7 @@ Focus on your app's logic while [rust-mcp-sdk](https://crates.io/crates/rust-mcp
52
52
53
53
- 🧩 Type-safe implementation of the MCP protocol specification.
54
54
- 💎 Auto-generated schemas are always synchronized with the official schema specifications.
55
-
- 📜 Includes all official released versions : `2025_11_25`, `2025_06_18`, `2025_03_26`, `2024_11_05` and `draft` version for early adoption.
55
+
- 📜 Includes all official released versions : `2025-11-25`, `2025-06-18`, `2025-03-26`, `2024-11-05` and `draft` version for early adoption.
56
56
- 🛠 Complimentary schema utility module (schema_utils) to boost productivity and ensure development integrity.
57
57
58
58
## How can this crate be used?
@@ -76,10 +76,10 @@ For more information on the MCP architecture, refer to the [official documentati
76
76
77
77
This repository provides all official released versions the schema , including draft version, enabling you to prepare and adapt your applications ahead of upcoming official schema releases.
78
78
79
-
-[2025_11_25](src/generated_schema/2025_11_25)
80
-
-[2025_06_18](src/generated_schema/2025_06_18)
81
-
-[2025_03_26](src/generated_schema/2025_03_26)
82
-
-[2024_11_05](src/generated_schema/2024_11_05)
79
+
-[2025-11-25](src/generated_schema/2025_11_25)
80
+
-[2025-06-18](src/generated_schema/2025_06_18)
81
+
-[2025-03-26](src/generated_schema/2025_03_26)
82
+
-[2024-11-05](src/generated_schema/2024_11_05)
83
83
-[draft](src/generated_schema/draft)
84
84
85
85
### How to switch between different schema versions?
@@ -93,7 +93,7 @@ Multiple schema versions may be enabled concurrently if needed. Non-default vers
93
93
- rust_mcp_schema::mcp_2025_06_18
94
94
- rust_mcp_schema::mcp_draft"
95
95
96
-
Example: enable `2025_06_18` version of the schema:
96
+
Example: enable `2025-06-18` version of the schema:
0 commit comments