run_acp_agent
Run an ACP agent with specified input text and mode to enable communication between ACP-based AI agents and MCP-compatible tools via the ACP-MCP-Server.
Instructions
Execute an ACP agent with specified mode
Input Schema
Name | Required | Description | Default |
---|---|---|---|
agent_name | Yes | ||
input_text | Yes | ||
mode | No | sync | |
session_id | No |
Input Schema (JSON Schema)
{
"properties": {
"agent_name": {
"title": "Agent Name",
"type": "string"
},
"input_text": {
"title": "Input Text",
"type": "string"
},
"mode": {
"default": "sync",
"title": "Mode",
"type": "string"
},
"session_id": {
"default": null,
"title": "Session Id",
"type": "string"
}
},
"required": [
"agent_name",
"input_text"
],
"type": "object"
}