Documentation
    Preparing search index...

    Interface McpMessage

    A single MCP JSON-RPC message (request, response, or notification).

    interface McpMessage {
        error?: unknown;
        id?: string | number;
        jsonrpc: "2.0";
        method?: string;
        params?: unknown;
        result?: unknown;
    }
    Index

    Properties

    error?: unknown
    id?: string | number
    jsonrpc: "2.0"
    method?: string
    params?: unknown
    result?: unknown