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

    Interface SearchActorsParams

    Parameters for searching actors in FoundryVTT

    SearchActorsParams

    const params: SearchActorsParams = {
    query: 'Gandalf',
    type: 'npc',
    limit: 10
    };
    interface SearchActorsParams {
        query?: string;
        type?: string;
        limit?: number;
    }
    Index

    Properties

    Properties

    query?: string

    Search query string to match against actor names

    type?: string

    Actor type filter (e.g., 'character', 'npc')

    limit?: number

    Maximum number of results to return