objectiveai_mcp_laboratory/lib.rs
1//! ObjectiveAI MCP filesystem library.
2//!
3//! Other crates can `use objectiveai_mcp_laboratory::{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 attribution;
8mod bash;
9mod composite;
10mod filetree;
11mod run;
12mod tools;
13mod transfer;
14
15pub use run::*;