FoundryVTT MCP Server Documentation - v0.9.2
    Preparing search index...

    Interface ItemSearchResult

    Result structure for item search operations

    Contains paginated search results for item queries along with metadata about the search.

    ItemSearchResult

    const searchResult: ItemSearchResult = {
    items: [],
    total: 42,
    page: 1,
    limit: 20
    };
    interface ItemSearchResult {
        items: FoundryItem[];
        total: number;
        page: number;
        limit: number;
    }
    Index

    Properties

    Properties

    items: FoundryItem[]
    total: number
    page: number
    limit: number