MCP TypeScript SDK
    Preparing search index...

    Interface QueuedNotification

    interface QueuedNotification {
        message: {
            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: "notification";
    }

    Hierarchy (View Summary)

    Index

    Properties

    message: {
        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 notification

    timestamp: number

    When the message was queued (milliseconds since epoch)

    type: "notification"

    Type of message