Frodo Library - v4.0.0-42
    Preparing search index...

    Type Alias McpExecutionPaginationMetadata

    Pagination metadata returned for list/search style tool calls.

    type McpExecutionPaginationMetadata = {
        includeTotalRequested?: boolean;
        isPartial: boolean;
        requestedPageOffset?: number;
        requestedPageSize?: number;
        requestedPageToken?: string;
        returnedCount?: number;
        warning?: string;
    }
    Index

    Properties

    includeTotalRequested?: boolean

    Whether caller requested exact totals.

    isPartial: boolean

    Whether the result appears to be truncated/paginated.

    requestedPageOffset?: number

    Requested page offset hint, if provided by caller.

    requestedPageSize?: number

    Requested page size hint, if provided by caller.

    requestedPageToken?: string

    Requested page token hint, if provided by caller.

    returnedCount?: number

    Number of rows returned when the payload is an array.

    warning?: string

    Optional advisory warning for agent callers.