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

    Interface ChatThreadMessage

    Parsed message row returned by chatThreadRead.

    line_start / line_end are 1-based and let the agent jump to or surgically edit a single turn in the conversation.

    interface ChatThreadMessage {
        content: string;
        line_end: number;
        line_start: number;
        role: "user" | "assistant" | "system";
        timestamp: string;
    }
    Index

    Properties

    content: string

    Message body, trimmed. May contain markdown.

    line_end: number

    1-based end line of this message.

    line_start: number

    1-based start line in the source note (for jumping to that point).

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

    Speaker role from the message heading.

    timestamp: string

    ISO-8601 timestamp from the heading (writer-supplied, not reparsed).