Agent Client Protocol - v0.4.6
    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 {
        _meta?: { [k: string]: unknown };
        options: PermissionOption[];
        sessionId: string;
        toolCall: ToolCallUpdate;
    }
    Index

    Properties

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

    Extension point for implementations

    options: PermissionOption[]

    Available permission options for the user to choose from.

    sessionId: string

    The session ID for this request.

    toolCall: ToolCallUpdate