rust-mcp-sdk 0.10.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
mod app_state;
pub(crate) mod error;
mod health_handler;
pub(crate) mod http_utils;
mod mcp_http_handler;
pub mod mount;

pub mod middleware;
mod types;

mod dns_rebinding;

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

pub use types::*;

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