MCP Orchestrator Server

update_task

Update an existing pending task

Input Schema

NameRequiredDescriptionDefault
dependenciesNoNew list of dependency task IDs
descriptionNoNew description for the task
task_idYesID of the task to update

Input Schema (JSON Schema)

{ "properties": { "dependencies": { "description": "New list of dependency task IDs", "items": { "type": "string" }, "type": "array" }, "description": { "description": "New description for the task", "type": "string" }, "task_id": { "description": "ID of the task to update", "type": "string" } }, "required": [ "task_id" ], "type": "object" }