delete-task
Remove a task from your Todo.txt file by specifying its 1-based ID using a server-integrated tool for task management.
Instructions
Delete a task by its 1-based ID.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
taskId | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"taskId": {
"type": "number"
}
},
"required": [
"taskId"
],
"type": "object"
}