execute_workflow
Run a specified workflow with optional streaming support using AutoGen MCP Server, enabling integration and multi-agent conversations with provided input data.
Instructions
Execute a workflow with streaming support
Input Schema
Name | Required | Description | Default |
---|---|---|---|
input_data | Yes | Input data | |
streaming | No | Enable streaming | |
workflow_name | Yes | Workflow name |
Input Schema (JSON Schema)
{
"properties": {
"input_data": {
"description": "Input data",
"type": "object"
},
"streaming": {
"description": "Enable streaming",
"type": "boolean"
},
"workflow_name": {
"description": "Workflow name",
"type": "string"
}
},
"required": [
"workflow_name",
"input_data"
],
"type": "object"
}