1 2 3 4 5 6
//! Cairn MCP server entry point: JSON-RPC over stdio. All logic is in the //! library (and, beneath it, in `cairn-core`); this is only the transport. fn main() { cairn_mcp_server::serve_stdio(); }