objectiveai_mcp/lib.rs
1//! ObjectiveAI MCP server library.
2//!
3//! Other crates can `use objectiveai_mcp::{ConfigBuilder, run}` and
4//! spawn the server in-process; the binary at `main.rs` is a thin wrapper
5//! that reads `Config` from the environment and calls [`run`].
6
7pub mod agent_args_registry;
8mod bridge;
9mod format;
10mod header_session_manager;
11pub mod objectiveai;
12mod run;
13
14#[cfg(test)]
15mod format_tests;
16
17pub use run::*;