abu-mcp 0.2.0

MCP protocol implementation
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
mod request;
mod response;
mod notification;
mod types;

pub const LATEST_PROTOCOL_VERSION: &str = "2024-11-05";
pub const SUPPORTED_PROTOCOL_VERSIONS: &[&str] = &[LATEST_PROTOCOL_VERSION, "2024-10-07"];
pub const JSONRPC_VERSION: &str = "2.0";

pub use request::*;
pub use response::*;
pub use notification::*;
pub use types::*;