agentmux 0.8.0

Multi-agent coordination runtime with inter-agent messaging across CLI, MCP, tmux, and ACP.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! MCP server surface for agentmux.
//!
//! Pure directory module. This file is an operator-hub: it only declares
//! submodules and re-exports the public surface (`McpConfiguration`,
//! `McpServer`, `run`). All other types (`McpState`, the shared relay
//! helpers, the `#[tool_handler]` impl) live in `service.rs`; the per-tool
//! `#[tool_router]` impl blocks live in `handlers/`.

mod handlers;
mod service;

pub use service::McpConfiguration;
pub(crate) use service::McpServer;
pub use service::run;