Agent Client Protocol - v0.5.1
    Preparing search index...

    Interface AuthenticateRequest

    Authenticates the client using the specified authentication method.

    Called when the agent requires authentication before allowing session creation. The client provides the authentication method ID that was advertised during initialization.

    After successful authentication, the client can proceed to create sessions with new_session without receiving an auth_required error.

    See protocol docs: Initialization

    interface AuthenticateRequest {
        _meta?: { [k: string]: unknown };
        methodId: string;
    }
    Index

    Properties

    Properties

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

    Extension point for implementations

    methodId: string

    The ID of the authentication method to use. Must be one of the methods advertised in the initialize response.