objectiveai-mcp-laboratory 2.2.12

MCP (Model Context Protocol) filesystem helpers for ObjectiveAI
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! ObjectiveAI MCP filesystem library.
//!
//! Other crates can `use objectiveai_mcp_laboratory::{ConfigBuilder, run}`
//! and spawn the server in-process; the binary at `main.rs` is a thin
//! wrapper that reads `Config` from the environment and calls [`run`].

mod attribution;
mod bash;
mod composite;
mod filetree;
mod run;
mod tools;
mod transfer;

pub use run::*;