Dart MCP Server

update_task

Update an existing task

Input Schema

NameRequiredDescriptionDefault
descriptionNoNew description for the task
duidYesDUID of the task to update
priorityNoNew priority for the task
status_duidNoNew status DUID
titleNoNew title for the task

Input Schema (JSON Schema)

{ "properties": { "description": { "description": "New description for the task", "type": "string" }, "duid": { "description": "DUID of the task to update", "type": "string" }, "priority": { "description": "New priority for the task", "enum": [ "Low", "Medium", "High", "Critical" ], "type": "string" }, "status_duid": { "description": "New status DUID", "type": "string" }, "title": { "description": "New title for the task", "type": "string" } }, "required": [ "duid" ], "type": "object" }