rust-fs-mcp 0.1.1

Rust stdio MCP server compatible with fs-mcp public tool contracts.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! main.rs
//! main
//!
//! Sole binary entry point that launches the stdio MCP server.
//! Calls protocol::server::run and exits non-zero on fatal startup errors.
//!

fn main() {
    if let Err(error) = rust_fs_mcp::server::run() {
        eprintln!("rust-fs-mcp fatal: {error}");
        std::process::exit(1);
    }
}