Agent Client Protocol - v0.2.0-alpha.8
    Preparing search index...

    Interface InitializeResponse

    Response from the initialize method.

    Contains the negotiated protocol version and agent capabilities.

    See protocol docs: Initialization

    interface InitializeResponse {
        agentCapabilities?: AgentCapabilities;
        authMethods?: AuthMethod[];
        protocolVersion: number;
    }
    Index

    Properties

    agentCapabilities?: AgentCapabilities
    authMethods?: AuthMethod[]

    Authentication methods supported by the agent.

    protocolVersion: number

    The protocol version the client specified if supported by the agent, or the latest protocol version supported by the agent.

    The client should disconnect, if it doesn't support this version.