MCP TypeScript SDK
    Preparing search index...

    Interface QueuedResponse

    interface QueuedResponse {
        message: {
            id: string | number;
            jsonrpc: "2.0";
            result: {
                _meta?: {
                    "io.modelcontextprotocol/related-task"?: { taskId: string };
                    progressToken?: string | number;
                    [key: string]: unknown;
                };
                [key: string]: unknown;
            };
        };
        timestamp: number;
        type: "response";
    }

    Hierarchy (View Summary)

    Index

    Properties

    message: {
        id: string | number;
        jsonrpc: "2.0";
        result: {
            _meta?: {
                "io.modelcontextprotocol/related-task"?: { taskId: string };
                progressToken?: string | number;
                [key: string]: unknown;
            };
            [key: string]: unknown;
        };
    }

    The actual JSONRPC response

    timestamp: number

    When the message was queued (milliseconds since epoch)

    type: "response"

    Type of message