start_interactive_agent
Initiate an interactive ACP agent session, enabling user input integration and communication via the ACP-MCP Server for AI agent workflows with customizable timeouts.
Instructions
Start an interactive ACP agent that may require user input
Input Schema
Name | Required | Description | Default |
---|---|---|---|
agent_name | Yes | ||
initial_input | Yes | ||
session_id | No | ||
timeout_minutes | No |
Input Schema (JSON Schema)
{
"properties": {
"agent_name": {
"title": "Agent Name",
"type": "string"
},
"initial_input": {
"title": "Initial Input",
"type": "string"
},
"session_id": {
"default": null,
"title": "Session Id",
"type": "string"
},
"timeout_minutes": {
"default": 5,
"title": "Timeout Minutes",
"type": "integer"
}
},
"required": [
"agent_name",
"initial_input"
],
"type": "object"
}