@modelcontextprotocol/sdk
    Preparing search index...

    Interface TextResourceContents

    The contents of a specific resource or sub-resource.

    interface TextResourceContents {
        _meta?: { [key: string]: unknown };
        mimeType?: string;
        text: string;
        uri: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

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

    See General fields: _meta for notes on _meta usage.

    mimeType?: string

    The MIME type of this resource, if known.

    text: string

    The text of the item. This must only be set if the item can actually be represented as text (not binary data).

    uri: string

    The URI of this resource.

    uri