Todoist MCP Server

by Chrusic
Verified

todoist_delete_task

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" }