provide_user_input
Resume a waiting interactive agent by submitting required user input, facilitating communication between ACP agents and MCP-compatible tools via the ACP-MCP Server.
Instructions
Provide user input to resume a waiting interactive agent
Input Schema
Name | Required | Description | Default |
---|---|---|---|
run_id | Yes | ||
user_input | Yes |
Input Schema (JSON Schema)
{
"properties": {
"run_id": {
"title": "Run Id",
"type": "string"
},
"user_input": {
"title": "User Input",
"type": "string"
}
},
"required": [
"run_id",
"user_input"
],
"type": "object"
}