1 2 3 4 5 6 7 8 9 10 11 12
use clap::Subcommand; /// Commands for MCP manifest management #[derive(Debug, Clone, Subcommand, PartialEq)] pub enum McpCommands { /// Manage the MCP manifest file Manifest { /// Write the manifest to mcp.json #[arg(long)] write: bool, }, }