Skip to main content

agentic_evolve_mcp/protocol/
mod.rs

1//! MCP protocol layer — message handling, validation, and capability negotiation.
2
3pub mod compact;
4pub mod handler;
5pub mod negotiation;
6pub mod validator;
7
8pub use handler::ProtocolHandler;