FoundryVTT MCP Server Documentation - v1.5.3
    Preparing search index...

    Interface CompendiumSearchResult

    Result envelope for a compendium search.

    restAvailable signals whether the REST API module (FOUNDRY_API_KEY) was present. When false, results is empty and the handler surfaces a note explaining that compendium search requires REST mode.

    nextCursor carries the opaque pagination cursor for the following page (an offset, base64-encoded); it is null when no further results exist.

    interface CompendiumSearchResult {
        results: CompendiumSearchEntry[];
        total: number;
        page: number;
        limit: number;
        restAvailable: boolean;
        nextCursor: string | null;
    }
    Index

    Properties

    total: number
    page: number
    limit: number
    restAvailable: boolean
    nextCursor: string | null