rust-mcp-sdk 0.9.0

An asynchronous SDK and framework for building MCP-Servers and MCP-Clients, leveraging the rust-mcp-schema for type safe MCP Schema Objects.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
mod audience;
#[cfg(feature = "auth")]
mod claims;
#[cfg(feature = "auth")]
mod discovery;
#[cfg(feature = "auth")]
mod jwk;

pub use audience::*;
#[cfg(feature = "auth")]
pub use claims::*;
#[cfg(feature = "auth")]
pub use discovery::*;
#[cfg(feature = "auth")]
pub use jwk::*;