update-task-backlog
Move tasks to your backlog for later review and organization. This tool helps you defer tasks by transferring them from your active list to the backlog using the task ID.
Instructions
Move a task to the backlog
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limitResponsePayload | No | Whether to limit the response payload size | |
| taskId | Yes | The ID of the task to move to backlog | |
| timezone | No | Timezone string (e.g., 'America/New_York'). If not provided, uses user's default timezone |
Input Schema (JSON Schema)
{
"properties": {
"limitResponsePayload": {
"description": "Whether to limit the response payload size",
"type": "boolean"
},
"taskId": {
"description": "The ID of the task to move to backlog",
"minLength": 1,
"type": "string"
},
"timezone": {
"description": "Timezone string (e.g., 'America/New_York'). If not provided, uses user's default timezone",
"type": "string"
}
},
"required": [
"taskId"
],
"type": "object"
}