todoist_delete_task
Remove a task from Todoist by specifying its task ID, enabling efficient task management and cleanup within the Todoist MCP Server environment.
Instructions
Delete a task from Todoist
Args: task_id: ID of the task to delete
Input Schema
Name | Required | Description | Default |
---|---|---|---|
task_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"task_id": {
"title": "Task Id",
"type": "string"
}
},
"required": [
"task_id"
],
"title": "todoist_delete_taskArguments",
"type": "object"
}