mcp-compressor-core 0.21.3

Internal Rust core for mcp-compressor. Prefer the public mcp-compressor crate.
Documentation
1
2
3
4
5
6
7
//! CLI entrypoint for the standalone Rust mcp-compressor core binary.

use std::process::ExitCode;

fn main() -> ExitCode {
    mcp_compressor_core::app::entrypoint::main_exit_code()
}