objectiveai-mcp-cli 2.0.7

MCP (Model Context Protocol) CLI for ObjectiveAI
1
2
3
4
5
6
7
8
9
10
//! ObjectiveAI MCP CLI library.
//!
//! Other crates can `use objectiveai_mcp_cli::{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 objectiveai;
mod run;

pub use run::*;