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

    Interface RequestPermissionRequest

    Request for user permission to execute a tool call.

    Sent when the agent needs authorization before performing a sensitive operation.

    See protocol docs: Requesting Permission

    interface RequestPermissionRequest {
        options: PermissionOption[];
        sessionId: string;
        toolCall: ToolCallUpdate;
    }
    Index

    Properties

    options: PermissionOption[]

    Available permission options for the user to choose from.

    sessionId: string

    The session ID for this request.

    toolCall: ToolCallUpdate