Interface IMCPTextMessage

Plain text message for the MCP (Model Context Protocol) agent.

interface IMCPTextMessage {
    id: MCPMessageId;
    text: string;
    type: "text";
}

Properties

Properties

Unique identifier for the message (used to track delivery and deduplication)

text: string

Human-readable message text

type: "text"

Discriminator for type-safe union