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

    Interface NoteReadFull

    Full-fidelity note representation returned by readNote(..., format: "full").

    content is the body (frontmatter stripped — frontmatter is exposed separately in the frontmatter field).

    interface NoteReadFull {
        content: string;
        embeds: Wikilink[];
        frontmatter: Record<string, unknown>;
        mtime: string;
        path: string;
        tags: string[];
        title: string;
        wikilinks: Wikilink[];
    }
    Index

    Properties

    content: string

    Markdown body, frontmatter stripped.

    embeds: Wikilink[]

    All ![[embeds]] in the body (images, transcludes, etc.).

    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), de-duplicated.

    title: string

    .md-stripped basename.

    wikilinks: Wikilink[]

    All [[wikilinks]] in the body, with target / alias / section / block.