a2a_send_task
Send tasks to A2A agents using this tool, facilitating message delivery and task tracking. Supports custom task IDs or auto-generates them, and routes tasks to specified or available agents.
Instructions
Send a task to an A2A agent
Input Schema
Name | Required | Description | Default |
---|---|---|---|
agentId | No | Optional agent ID. If not provided, the first available agent will be used | |
message | Yes | Message to send to the agent | |
taskId | No | Optional task ID. If not provided, a new UUID will be generated |
Input Schema (JSON Schema)
{
"properties": {
"agentId": {
"description": "Optional agent ID. If not provided, the first available agent will be used",
"type": "string"
},
"message": {
"description": "Message to send to the agent",
"type": "string"
},
"taskId": {
"description": "Optional task ID. If not provided, a new UUID will be generated",
"type": "string"
}
},
"required": [
"message"
],
"type": "object"
}