enquire-mcp API reference - v3.9.0-rc.4
    Preparing search index...

    Interface TagSummary

    One row of the listTags response.

    Tracks frontmatter vs. inline occurrences separately — useful for detecting tag drift (e.g. #draft inline that should be moved to tags: [draft] in YAML).

    interface TagSummary {
        count: number;
        frontmatter_count: number;
        inline_count: number;
        tag: string;
    }
    Index

    Properties

    count: number

    Total occurrences across the vault (frontmatter + inline). Sort key.

    frontmatter_count: number

    Occurrences in YAML tags: arrays.

    inline_count: number

    Occurrences as inline #tag in note body.

    tag: string

    Normalized tag (lowercased, no leading #).