MCP Inception MCP Server

by tanevanwifferen
Verified

execute_parallel_mcp_client

Execute multiple AI tasks in parallel, with responses in JSON key-value pairs.

Input Schema

NameRequiredDescriptionDefault
itemsYesArray of parameters to process in parallel
promptYesThe 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" }