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

    Interface SearchItemsParams

    Parameters for searching items in FoundryVTT

    SearchItemsParams

    const params: SearchItemsParams = {
    query: 'sword',
    type: 'weapon',
    rarity: 'rare',
    limit: 20
    };
    interface SearchItemsParams {
        query?: string;
        type?: string;
        rarity?: string;
        limit?: number;
    }
    Index

    Properties

    query?: string

    Search query string to match against item names

    type?: string

    Item type filter (e.g., 'weapon', 'armor', 'consumable')

    rarity?: string

    Item rarity filter (e.g., 'common', 'uncommon', 'rare')

    limit?: number

    Maximum number of results to return