Skip to main content

mcp_execution_cli/commands/
mod.rs

1//! Command implementations for the MCP CLI.
2//!
3//! This module contains all subcommand implementations, organized by functionality.
4//! Each command module is responsible for parsing its arguments, executing the
5//! operation, and formatting output according to the requested format.
6
7pub mod common;
8pub mod completions;
9pub mod generate;
10pub mod introspect;
11pub mod server;
12pub mod setup;
13pub mod skill;