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
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -17,7 +17,7 @@ The MCP schemas in this repository are [automatically generated](#how-are-schema
17
17
18
18
-[Features](#features)
19
19
-[How can this crate be used?](#how-can-this-crate-be-used)
20
-
-[What is not included in this crate?](#warning-what-is-not-included-in-this-crate)
20
+
-[What is not included in this crate?](#%EF%B8%8F-what-is-not-included-in-this-crate)
21
21
-[Schema Versions](#schema-versions)
22
22
-[Currently available versions](#currently-available-versions)
23
23
-[How to switch between different schema versions?](#how-to-switch-between-different-schema-versions)
@@ -108,7 +108,7 @@ Using a customized version of [typify](https://github.com/oxidecomputer/typify),
108
108
109
109
The Rust implementations of the MCP schemas in this crate are automatically generated from the official MCP GitHub repository.
110
110
111
-
[schema_utils.rs](src/generated_schema/2024_11_05/schema_utils.rs) provides all the core structures and enums with serialization/deserialization support, allowing you to use them as needed and extend their functionality.
111
+
[mcp_schema.rs](src/generated_schema/2024_11_05/mcp_schema.rs) provides all the core structures and enums with serialization/deserialization support, allowing you to use them as needed and extend their functionality.
112
112
113
113
To streamline development, improve compile-time type checking, and reduce the potential for errors, we’ve implemented utility types and functions that offer more strongly-typed objects and implementations, all without modifying the originally generated schema.
114
114
@@ -118,7 +118,7 @@ Please refer to [schema_utils.rs](src/generated_schema/2024_11_05/schema_utils.r
118
118
119
119
> Using schema_utils is optional. It is enabled by default through the schema_utils Cargo feature and can be used from `rust_mcp_schema::schema_utils`.
120
120
121
-
> If you prefer not to use schema_utils, you can directly work with the enums and structs provided in schema.rs, adapting them to your needs and creating your own utility types and functions around them.
121
+
> If you prefer not to use schema_utils, you can directly work with the enums and structs provided in [mcp_schema.rs](src/generated_schema/2024_11_05/mcp_schema.rs), adapting them to your needs and creating your own utility types and functions around them.
122
122
123
123
Visit [Usage Examples (Without `Using schema_utils`)](#usage-examples-without-utilizing-schema_utils) to see an alternative approach.
0 commit comments