turbomcp-cli 3.1.3

Command-line tools for managing and testing MCP servers
Documentation
1
2
3
4
5
6
7
8
#[tokio::main]
async fn main() {
    if let Err(e) = turbomcp_cli::run().await {
        // Display error with proper formatting
        eprintln!("Error: {}", e);
        std::process::exit(1);
    }
}