1 2 3 4 5 6 7
//! Transport layer: CLI and MCP (Model Context Protocol) server. //! //! - [`cli`] - Command-line interface with subcommands for all operations //! - [`mcp`] - MCP server implementation for AI assistant integration pub mod cli; pub mod mcp;