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 format;
9mod header_session_manager;
10pub mod objectiveai;
11mod run;
12
13#[cfg(test)]
14mod format_tests;
15
16pub use run::*;