1 2 3 4 5 6 7 8 9 10
//! `rigg mcp` — delegates to the MCP server module. use anyhow::Result; use crate::cli::McpArgs; use crate::commands::GlobalContext; pub async fn run(_ctx: &GlobalContext, args: McpArgs) -> Result<()> { crate::mcp::run(args).await }