objectiveai-mcp 2.2.0

MCP (Model Context Protocol) server for ObjectiveAI
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! ObjectiveAI MCP server library.
//!
//! Other crates can `use objectiveai_mcp::{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`].

pub mod agent_args_registry;
mod bridge;
mod format;
mod header_session_manager;
pub mod objectiveai;
mod run;

#[cfg(test)]
mod format_tests;

pub use run::*;