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
+44
View File
@@ -2428,6 +2428,50 @@
"type": "string"
}
}
},
{
"type": "object",
"required": [
"id",
"message",
"requested_schema",
"actionType"
],
"properties": {
"actionType": {
"type": "string",
"enum": [
"elicitation"
]
},
"id": {
"type": "string"
},
"message": {
"type": "string"
},
"requested_schema": {}
}
},
{
"type": "object",
"required": [
"id",
"user_data",
"actionType"
],
"properties": {
"actionType": {
"type": "string",
"enum": [
"elicitationResponse"
]
},
"id": {
"type": "string"
},
"user_data": {}
}
}
],
"discriminator": {