burn_synth_mcp 0.2.0

MCP server for burn_synth foreground extraction and 3D synthesis
Documentation
1
2
3
4
5
6
7
8
9
10
11
use clap::Parser;

use burn_synth_mcp::{ServerArgs, run_from_args};

fn main() {
    let args = ServerArgs::parse();
    if let Err(err) = run_from_args(args) {
        eprintln!("burn_synth_mcp error: {err}");
        std::process::exit(1);
    }
}