1 2 3 4 5 6 7
use beck::error::Result; /// Start the MCP server on stdio. Blocks until the client disconnects. /// See `src/mcp/` for the ServerHandler + ToolRouter implementation. pub async fn handle() -> Result<()> { beck::mcp::start().await }