atm-agent-mcp 0.14.0

MCP proxy for managing Codex agent sessions with ATM team integration
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Configuration resolution for atm-agent-mcp.
//!
//! The entry point is [`resolve_config`], which loads ATM base config and
//! extracts the `[plugins.atm-agent-mcp]` section into an [`AgentMcpConfig`].
//!
//! See [`resolve`] for the full priority chain and [`types`] for all config types.

mod resolve;
mod types;

pub use resolve::{resolve_config, ResolvedConfig};
// Re-exported for use by command modules and future library consumers.
pub use types::{AgentMcpConfig, RolePreset};