Todoist MCP Server

by Chrusic
Verified

todoist_delete_task

Remove tasks from Todoist using task IDs, names, or batch operations. Simplify task management by deleting specific or multiple tasks efficiently.

Instructions

Delete one or more tasks from Todoist

Input Schema

NameRequiredDescriptionDefault
task_idNoID of the task to delete (preferred)
task_nameNoName/content of the task to search for and delete (if ID not provided)
tasksNoArray of tasks to delete (for batch operations)

Input Schema (JSON Schema)

{ "anyOf": [ { "required": [ "tasks" ] }, { "required": [ "task_id" ] }, { "required": [ "task_name" ] } ], "properties": { "task_id": { "description": "ID of the task to delete (preferred)", "type": "string" }, "task_name": { "description": "Name/content of the task to search for and delete (if ID not provided)", "type": "string" }, "tasks": { "description": "Array of tasks to delete (for batch operations)", "items": { "anyOf": [ { "required": [ "task_id" ] }, { "required": [ "task_name" ] } ], "properties": { "task_id": { "description": "ID of the task to delete (preferred)", "type": "string" }, "task_name": { "description": "Name/content of the task to search for and delete (if ID not provided)", "type": "string" } }, "type": "object" }, "type": "array" } }, "type": "object" }
ID: xzuab11d38