rust-fs-mcp 0.2.0

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
14
15
//! lib.rs
//!
//! Public facade that exposes core, protocol, and tools under stable paths.
//! Lets the binary, integration tests, and external callers share the same use paths.
//!

/// 1. mod ----------------------------------------------------------------------
pub mod core;
pub mod protocol;
pub mod tools;

/// 2. use ----------------------------------------------------------------------
pub use core::{args_ref, batch, config, external, response, web};
pub use protocol::{catalog, server};
pub use tools::{fs_tools, git_tools, inspect_tools, search_tools};