//! ZCLAW Protocols //! //! Protocol support for MCP (Model Context Protocol) and A2A (Agent-to-Agent). //! //! A2A is gated behind the `a2a` feature flag (reserved for future multi-agent scenarios). //! MCP is always available as a framework for tool integration. mod mcp; mod mcp_types; mod mcp_transport; #[cfg(feature = "a2a")] mod a2a; pub use mcp::*; pub use mcp_types::*; pub use mcp_transport::*; #[cfg(feature = "a2a")] pub use a2a::*;