mcp-execution-cli 0.7.0

CLI for MCP progressive loading code generation
Documentation
//! Action type definitions for CLI commands.
//!
//! Defines the action enums used by various commands.

use clap::Subcommand;

/// Server management actions.
#[derive(Subcommand, Debug)]
pub enum ServerAction {
    /// List all configured servers
    List,

    /// Show detailed information about a server
    Info {
        /// Server name
        server: String,
    },

    /// Validate a server command
    Validate {
        /// Server command to validate
        command: String,
    },
}