invoke_agent
Execute complex queries requiring multi-tool reasoning or conversational responses by invoking the full agent with natural language prompts.
Instructions
Invoke the full strands-mcp-cli agent with a natural language prompt. Use this for complex queries that require reasoning across multiple tools or when you need a conversational response from the agent.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| prompt | Yes | The prompt or query to send to the agent |
Input Schema (JSON Schema)
{
"properties": {
"prompt": {
"description": "The prompt or query to send to the agent",
"type": "string"
}
},
"required": [
"prompt"
],
"type": "object"
}