//! Action type definitions for CLI commands.
//!
//! Defines the action enums used by various commands.
use Subcommand;
/// Server management actions.
///
/// # Examples
///
/// ```
/// use mcp_execution_cli::actions::ServerAction;
/// use clap::Subcommand;
///
/// let list_action = ServerAction::List;
/// // Can be used with clap for CLI parsing
/// ```