feat(cli): allow expanding full details of MCP tool on approval (#19916)

This commit is contained in:
Yuki Okita
2026-02-24 10:45:05 +09:00
committed by GitHub
parent 3409de774c
commit 05bc0399f3
6 changed files with 207 additions and 10 deletions
+3
View File
@@ -757,6 +757,9 @@ export interface ToolMcpConfirmationDetails {
serverName: string;
toolName: string;
toolDisplayName: string;
toolArgs?: Record<string, unknown>;
toolDescription?: string;
toolParameterSchema?: unknown;
onConfirm: (outcome: ToolConfirmationOutcome) => Promise<void>;
}