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

    Interface FrontmatterSearchArgs

    Predicate-based frontmatter query — arguments to frontmatterSearch.

    Exactly one of equals / exists / contains must be set:

    • equals: <value> — strict equality (JSON.stringify comparison)
    • exists: true — key must exist (any value, including false / 0 / null)
    • contains: <value> — for array values, value must be a member
    interface FrontmatterSearchArgs {
        contains?: unknown;
        equals?: unknown;
        exists?: boolean;
        folder?: string;
        key: string;
        limit?: number;
    }
    Index

    Properties

    contains?: unknown

    Array-membership predicate. Matches when frontmatter[key] is an array containing this value.

    equals?: unknown

    Strict equality predicate (JSON.stringify comparison).

    exists?: boolean

    Existence predicate — when true, matches notes where key is present at all.

    folder?: string

    Restrict scan to a subdirectory (vault-relative).

    key: string

    Frontmatter key to match against.

    limit?: number

    Result cap (default 100).