@adcp/client API Reference - v3.11.2
    Preparing search index...

    Interface AdcpCapabilities

    Normalized capabilities response that works for both v2 and v3 servers

    interface AdcpCapabilities {
        version: "v2" | "v3";
        majorVersions: AdcpMajorVersion[];
        protocols: AdcpProtocol[];
        features: MediaBuyFeatures;
        extensions: string[];
        publisherDomains?: string[];
        channels?: string[];
        lastUpdated?: string;
        _synthetic: boolean;
        _raw?: unknown;
    }
    Index

    Properties

    version: "v2" | "v3"

    Detected version ('v2' or 'v3')

    majorVersions: AdcpMajorVersion[]

    Array of supported major versions (e.g., [2] or [2, 3])

    protocols: AdcpProtocol[]

    Supported protocols

    Media buy specific features

    extensions: string[]

    Supported extension namespaces (e.g., 'scope3', 'garm')

    publisherDomains?: string[]

    Publisher domains covered by this agent

    channels?: string[]

    Supported advertising channels

    lastUpdated?: string

    Last updated timestamp (if provided by server)

    _synthetic: boolean

    Whether this was synthesized from tool list (v2) or from get_adcp_capabilities (v3)

    _raw?: unknown

    Raw response from get_adcp_capabilities (only for v3)