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

    Interface ChatThreadAppendArgs

    Arguments for chatThreadAppend.

    interface ChatThreadAppendArgs {
        content: string;
        note_path: string;
        role: "user" | "assistant" | "system";
        thread_title?: string;
    }
    Index

    Properties

    content: string

    Message body (markdown allowed).

    note_path: string

    Vault-relative path to the note hosting the thread. Created if absent.

    role: "user" | "assistant" | "system"

    Role of the message being appended.

    thread_title?: string

    Optional thread title — used when the note is created from scratch.