MCP Server Framework - v1.0.0
    Preparing search index...

    Interface JsonRpcErrorResponse

    JSON-RPC 2.0 error response structure. Used as return type for createJsonRpcError.

    interface JsonRpcErrorResponse {
        error: { code: number; message: string };
        id: RequestId | null;
        jsonrpc: "2.0";
    }
    Index

    Properties

    Properties

    error: { code: number; message: string }
    id: RequestId | null
    jsonrpc: "2.0"