mcp_execution_cli/lib.rs
1//! MCP CLI library.
2//!
3//! This library provides the core functionality for the MCP CLI tool,
4//! exposing modules for commands and formatters that can be tested.
5
6#![allow(clippy::format_push_string)]
7#![allow(clippy::unused_async)]
8#![allow(clippy::cast_possible_truncation)]
9#![allow(clippy::missing_errors_doc)]
10#![allow(clippy::needless_collect)]
11#![allow(clippy::unnecessary_wraps)]
12#![allow(clippy::unnecessary_literal_unwrap)]
13
14pub mod actions;
15pub mod commands;
16pub mod formatters;
17
18// Re-export action types for convenience
19pub use actions::ServerAction;