call_agent
Initiate communication with an AI agent by providing a specific name and prompt to receive a tailored response, enabling extended functionality through the A2A MCP Server.
Instructions
Call an agent with a prompt.
Args:
agent_name: Name of the agent to call
prompt: Prompt to send to the agent
Returns:
Dict with response from the agent
Input Schema
Name | Required | Description | Default |
---|---|---|---|
agent_name | Yes | ||
prompt | Yes |
Input Schema (JSON Schema)
{
"properties": {
"agent_name": {
"title": "Agent Name",
"type": "string"
},
"prompt": {
"title": "Prompt",
"type": "string"
}
},
"required": [
"agent_name",
"prompt"
],
"title": "call_agentArguments",
"type": "object"
}