mcp_host/
server.rs

1//! Server implementation
2//!
3//! MCP server with bidirectional communication support.
4
5pub mod builder;
6pub mod core;
7pub mod handler;
8pub mod middleware;
9pub mod multiplexer;
10pub mod profile;
11pub mod session;
12pub mod visibility;