1//! Model Context Protocol server for Spikard's codegen-first workflows. 2 3mod errors; 4mod params; 5mod server; 6 7pub use server::{SpikardMcp, start_mcp_server}; 8 9#[cfg(feature = "mcp-http")] 10pub use server::start_mcp_server_http;