rust-mcp-axum 2.0.0

Axum HTTP server integration for rust-mcp-sdk
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
mod error;
mod factory;
pub mod routes;
mod runtime;
mod server;
mod utils;

pub use error::*;
pub use factory::*;
pub use routes::mcp_routes;
pub use runtime::*;
pub use server::*;

pub use axum;