enquire-mcp API reference - v4.0.0-rc.7
    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
    count: number

    Number of notes containing the tag. Sort key.

    frontmatter_count: number

    Notes where the tag occurs in YAML tags:.

    inline_count: number

    Notes credited to inline #tag because YAML did not already contain it.

    tag: string

    Normalized tag (lowercased, no leading #).