@modelcontextprotocol/sdk
    Preparing search index...

    Interface ProgressNotificationParams

    Parameters for a notifications/progress notification.

    interface ProgressNotificationParams {
        _meta?: { [key: string]: unknown };
        message?: string;
        progress: number;
        progressToken: ProgressToken;
        total?: number;
    }

    Hierarchy (View Summary)

    Index

    Properties

    _meta?: { [key: string]: unknown }

    See General fields: _meta for notes on _meta usage.

    message?: string

    An optional message describing the current progress.

    progress: number

    The progress thus far. This should increase every time progress is made, even if the total is unknown.

    number

    progressToken: ProgressToken

    The progress token which was given in the initial request, used to associate this notification with the request that is proceeding.

    total?: number

    Total number of items to process (or total progress required), if known.

    number