objectiveai_mcp_filesystem/lib.rs
1//! ObjectiveAI MCP filesystem library.
2//!
3//! Other crates can `use objectiveai_mcp_filesystem::{ConfigBuilder, run}`
4//! and spawn the server in-process; the binary at `main.rs` is a thin
5//! wrapper that reads `Config` from the environment and calls [`run`].
6
7mod bash;
8mod edit_file;
9mod glob_search;
10mod grep_search;
11mod notebook;
12mod read_file;
13mod run;
14mod state;
15mod tools;
16mod util;
17mod write_file;
18
19pub use run::*;