rigg 1.0.0

Configuration-as-code CLI for Azure AI Search and Microsoft Foundry
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
}