MCP TypeScript SDK
    Preparing search index...

    Interface QueuedRequest

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

    Hierarchy (View Summary)

    Index

    Properties

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

    The actual JSONRPC request

    timestamp: number

    When the message was queued (milliseconds since epoch)

    type: "request"

    Type of message