@modelcontextprotocol/sdk
    Preparing search index...

    Interface TextContent

    Text provided to or from an LLM.

    interface TextContent {
        _meta?: { [key: string]: unknown };
        annotations?: Annotations;
        text: string;
        type: "text";
    }
    Index

    Properties

    _meta?: { [key: string]: unknown }

    See General fields: _meta for notes on _meta usage.

    annotations?: Annotations

    Optional annotations for the client.

    text: string

    The text content of the message.

    type: "text"