feat(mcp): elicitation support (#5965)

This commit is contained in:
Alex Hancock
2025-12-05 21:29:59 -05:00
committed by GitHub
parent 1db40709bb
commit 06155ce0ca
24 changed files with 992 additions and 22 deletions
+9
View File
@@ -14,6 +14,15 @@ export type ActionRequiredData = {
id: string;
prompt?: string | null;
toolName: string;
} | {
actionType: 'elicitation';
id: string;
message: string;
requested_schema: unknown;
} | {
actionType: 'elicitationResponse';
id: string;
user_data: unknown;
};
export type AddExtensionRequest = {