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

    Interface CompendiumSearchEntry

    A single compendium search result entry.

    Carries enough metadata to disambiguate near-identical entries across packs and rule revisions (e.g. Divine Smite PHB-2014 vs PHB-2024 via system.source.rules). compendiumId scopes the entry to its pack and itemId identifies the entry within that pack.

    interface CompendiumSearchEntry {
        compendiumId: string;
        itemId: string;
        name: string;
        type: string;
        img?: string;
        system?: {
            level?: number;
            school?: string;
            source?: { rules?: string; custom?: string };
        };
    }
    Index

    Properties

    compendiumId: string
    itemId: string
    name: string
    type: string
    img?: string
    system?: {
        level?: number;
        school?: string;
        source?: { rules?: string; custom?: string };
    }