Todoist MCP Server

by Chrusic
Verified

todoist_update_task_labels

Update the labels of a task in Todoist

Input Schema

NameRequiredDescriptionDefault
labelsYesArray of label names to set for the task
task_nameYesName/content of the task to update labels for

Input Schema (JSON Schema)

{ "properties": { "labels": { "description": "Array of label names to set for the task", "items": { "type": "string" }, "type": "array" }, "task_name": { "description": "Name/content of the task to update labels for", "type": "string" } }, "required": [ "task_name", "labels" ], "type": "object" }