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

    Interface PaperAuditFinding

    One flagged paper note returned by paperAudit.

    proposed_frontmatter_patch is a ready-to-apply YAML patch the agent can hand to frontmatterSet. Null when the body has no detectable identifiers either (the note really has no citation, manual fix needed).

    interface PaperAuditFinding {
        found_in_body: { arxiv: string[]; doi: string[]; url: string[] };
        has_frontmatter_citation: boolean;
        message: string;
        path: string;
        proposed_frontmatter_patch: Record<string, string> | null;
        title: string;
    }
    Index

    Properties

    found_in_body: { arxiv: string[]; doi: string[]; url: string[] }

    Identifiers detected in body text (deduplicated, URLs capped at 3).

    has_frontmatter_citation: boolean

    Whether the note has any of arxiv/doi/url/isbn in frontmatter.

    message: string

    Human-readable description of the issue.

    path: string

    Vault-relative path of the offending note.

    proposed_frontmatter_patch: Record<string, string> | null

    A ready-to-apply { arxiv | doi | url } patch — or null.

    title: string

    .md-stripped basename for display.