submit_elicitation_response
Submit responses to elicitation requests and manage multi-step workflows automatically. Advances workflow steps upon submission to ensure progress.
Instructions
Submit a response to an elicitation request.
This tool handles both regular elicitation responses and multi-step workflow responses. When a workflow is in progress, it will automatically advance to the next step.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
complete | No | ||
request_id | Yes | ||
response_data | Yes |
Input Schema (JSON Schema)
{
"properties": {
"complete": {
"default": true,
"title": "Complete",
"type": "boolean"
},
"request_id": {
"title": "Request Id",
"type": "string"
},
"response_data": {
"additionalProperties": true,
"title": "Response Data",
"type": "object"
}
},
"required": [
"request_id",
"response_data"
],
"type": "object"
}