MCP Orchestrator Server

create_task

Create a new task

Input Schema

NameRequiredDescriptionDefault
dependenciesNoIDs of tasks that must be completed first
descriptionYesDescription of the task
idYesUnique identifier for the task

Input Schema (JSON Schema)

{ "properties": { "dependencies": { "description": "IDs of tasks that must be completed first", "items": { "type": "string" }, "type": "array" }, "description": { "description": "Description of the task", "type": "string" }, "id": { "description": "Unique identifier for the task", "type": "string" } }, "required": [ "id", "description" ], "type": "object" }