execute_parallel_mcp_client
Execute multiple AI tasks in parallel using JSON key-value pairs, enabling efficient processing of array parameters and a shared base prompt for streamlined multi-agent interactions.
Instructions
Execute multiple AI tasks in parallel, with responses in JSON key-value pairs.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
items | Yes | Array of parameters to process in parallel | |
prompt | Yes | The base prompt to use for all executions |
Input Schema (JSON Schema)
{
"properties": {
"items": {
"description": "Array of parameters to process in parallel",
"items": {
"type": "string"
},
"type": "array"
},
"prompt": {
"description": "The base prompt to use for all executions",
"type": "string"
}
},
"required": [
"prompt",
"items"
],
"type": "object"
}