Agent Client Protocol - v1.2.1
    Preparing search index...

    Type Alias ResourceLink

    A resource that the server is capable of reading, included in a prompt or tool call result.

    type ResourceLink = {
        annotations?: Annotations | null;
        description?: string | null;
        mimeType?: string | null;
        name: string;
        size?: number | null;
        title?: string | null;
        uri: string;
        _meta?: { [key: string]: unknown } | null;
    }
    Index
    annotations?: Annotations | null

    Optional annotations that help clients decide how to display or route this content.

    description?: string | null

    Optional human-readable details shown with this protocol object.

    mimeType?: string | null

    MIME type describing the encoded media payload.

    name: string

    Human-readable name shown for this protocol object.

    size?: number | null

    Optional size of the linked resource in bytes, if known.

    title?: string | null

    Optional display title for end-user UI.

    uri: string

    URI associated with this resource or media payload.

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

    The _meta property is reserved by ACP to allow clients and agents to attach additional metadata to their interactions. Implementations MUST NOT make assumptions about values at these keys.

    See protocol docs: Extensibility