1 2 3 4 5 6 7 8 9 10 11 12
// SPDX-License-Identifier: Apache-2.0 //! Solo transports: MCP server (rmcp) and HTTP/JSON (axum). //! //! - MCP stdio: [`mcp::SoloMcpServer`] + [`mcp::serve_stdio`]. //! - HTTP/JSON: [`http::SoloHttpState`] + [`http::serve_http`]. pub mod http; pub mod mcp; pub use http::{SoloHttpState, openapi_spec, serve_http}; pub use mcp::{SoloMcpServer, serve_stdio, tool_names};