stand-in 0.0.4

A stand-in for your MCP server boilerplate.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! JSON-RPC 2.0 wire format types.

mod error;
mod notification;
mod request;
mod response;

pub use error::JsonRpcError;
pub use notification::JsonRpcNotification;
pub use notification::notification_methods;
pub use request::JsonRpcRequest;
pub use response::JsonRpcResponse;