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

    Interface VaultStats

    Vault-wide dashboard returned by getVaultStats.

    All counts are computed in a single pass over the markdown corpus so cost is O(N notes × parse). orphans are notes with neither inbound nor outbound links. broken_wikilinks is the total count of unresolved [[targets]] (use getUnresolvedWikilinks for the per-link details).

    interface VaultStats {
        avg_note_words: number;
        broken_wikilinks: number;
        generated_at: string;
        notes_with_frontmatter: number;
        orphans: number;
        recently_modified_7d: number;
        top_tags: { count: number; tag: string }[];
        total_notes: number;
        total_size_bytes: number;
        total_tags: number;
    }
    Index

    Properties

    avg_note_words: number

    Average words per note, rounded. Zero if vault is empty.

    broken_wikilinks: number

    Total count of [[targets]] that fail to resolve to any note.

    generated_at: string

    ISO-8601 timestamp of report generation.

    notes_with_frontmatter: number

    Notes whose frontmatter is non-empty.

    orphans: number

    Notes with no inbound AND no outbound wikilinks.

    recently_modified_7d: number

    Notes with mtime in the last 7 days.

    top_tags: { count: number; tag: string }[]

    Top N tags by frequency, sorted desc. N = args.top_tags ?? 10.

    total_notes: number

    Total .md files in the vault (post-exclusion filtering).

    total_size_bytes: number

    Sum of UTF-8 byte sizes across all notes.

    total_tags: number

    Distinct tag count (normalized: lowercase, deduplicated).