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

    Interface NoteSummary

    Lightweight metadata row used by listing endpoints (listNotes, getRecentEdits).

    No content — for the body, follow up with readNote.

    interface NoteSummary {
        frontmatter: Record<string, unknown>;
        mtime: string;
        path: string;
        tags: string[];
        title: string;
    }
    Index

    Properties

    frontmatter: Record<string, unknown>

    Parsed YAML frontmatter (may be empty {}).

    mtime: string

    ISO-8601 modification timestamp.

    path: string

    Vault-relative path.

    tags: string[]

    Tags (frontmatter + inline #tag), de-duplicated, original case.

    title: string

    .md-stripped basename of the note.