update_task
Modify task details like status, title, description, or priority using the DUID for precise updates within the Dart MCP Server.
Instructions
Update an existing task
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | No | New description for the task | |
duid | Yes | DUID of the task to update | |
priority | No | New priority for the task | |
status_duid | No | New status DUID | |
title | No | New 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"
}