Skip to main content

atm_agent_mcp/
lib.rs

1//! atm-agent-mcp library crate.
2//!
3//! Provides the MCP proxy core, framing, tool schemas, configuration, and CLI
4//! types for the `atm-agent-mcp` binary. Exposed as a library for integration
5//! testing and potential reuse.
6
7pub mod atm_tools;
8pub mod audit;
9pub mod cli;
10pub mod commands;
11pub mod config;
12pub mod context;
13pub mod elicitation;
14pub mod framing;
15pub mod inject;
16pub mod lifecycle;
17pub mod lock;
18pub mod mail_inject;
19pub mod proxy;
20pub mod session;
21pub mod stdin_queue;
22pub mod summary;
23pub mod tools;
24pub mod transport;
25
26#[doc(inline)]
27pub use transport::{MockTransport, MockTransportHandle, RawChildIo};