delete_task
Permanently remove a task from the database using its ID. Use for tasks created in error or no longer needed; cannot be undone.
Instructions
Permanently delete a task from the database.
The destructive complement to create_task — removes the task row entirely.
Use this for tasks created in error or no longer relevant; to instead mark
work finished (and continue a recurring series), use update_task with
status="done". Find the task_id with get_tasks. This cannot be undone.
Args:
task_id: ID of the task to delete (as shown by get_tasks). Required.
Returns:
A confirmation that the task was deleted, or a note if no task with that
id exists.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| task_id | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |