1 2 3 4 5 6 7 8 9 10 11
use clap::Args; use std::path::PathBuf; /// Options for `repopilot mcp`. /// #[derive(Args)] pub struct McpOptions { /// Restrict all MCP file access to this workspace root #[arg(long, default_value = ".")] pub root: PathBuf, }