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
16
17
mod app_state;
mod health_handler;
pub(crate) mod http_utils;
mod mcp_http_handler;

pub mod middleware;
mod types;

pub use app_state::*;
pub use http_utils::*;
pub use mcp_http_handler::*;

pub use types::*;

pub use health_handler::*;
pub use http;
pub use middleware::Middleware;