mcp-context-server 0.1.0

MCP server exposing context tools over JSON-RPC 2.0 stdio transport
Documentation
1
2
3
4
5
6
7
8
9
10
11
pub mod request;
pub mod response;

pub use request::{
    InitializeParams, InspectCacheParams, JsonRpcRequest, ListCachesParams, ResolveContextParams,
    RpcId, ToolCallParams,
};
pub use response::{
    JsonRpcError, JsonRpcResponse, McpError, McpErrorCode, McpErrorResponse, ToolResult,
    ToolResultContent,
};