@modelcontextprotocol/sdk
    Preparing search index...

    Interface AudioContent

    Audio provided to or from an LLM.

    interface AudioContent {
        _meta?: { [key: string]: unknown };
        annotations?: Annotations;
        data: string;
        mimeType: string;
        type: "audio";
    }
    Index

    Properties

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

    See General fields: _meta for notes on _meta usage.

    annotations?: Annotations

    Optional annotations for the client.

    data: string

    The base64-encoded audio data.

    byte

    mimeType: string

    The MIME type of the audio. Different providers may support different audio types.

    type: "audio"