mcp_context_server/protocol/mod.rs
1pub mod request;
2pub mod response;
3
4pub use request::{
5 InitializeParams, InspectCacheParams, JsonRpcRequest, ListCachesParams, ResolveContextParams,
6 RpcId, ToolCallParams,
7};
8pub use response::{
9 JsonRpcError, JsonRpcResponse, McpError, McpErrorCode, McpErrorResponse, ToolResult,
10 ToolResultContent,
11};