1 2 3 4 5 6 7 8 9 10
//! MCP protocol handler — JSON-RPC message processing, negotiation, and validation. pub mod compact; pub mod handler; pub mod negotiation; pub mod validator; pub use handler::ProtocolHandler; pub use negotiation::{ProtocolNegotiator, SUPPORTED_VERSIONS}; pub use validator::RequestValidator;