Agent Client Protocol - v0.14.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 = {
        _meta?: { [key: string]: unknown } | null;
        annotations?: Annotations | null;
        description?: string | null;
        mimeType?: string | null;
        name: string;
        size?: number | null;
        title?: string | null;
        uri: string;
    }
    Index

    Properties

    _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

    annotations?: Annotations | null
    description?: string | null
    mimeType?: string | null
    name: string
    size?: number | null
    title?: string | null
    uri: string