Todoist MCP Server

by Chrusic
Verified

todoist_remove_shared_labels

Remove one or more shared labels from Todoist tasks

Input Schema

NameRequiredDescriptionDefault
labelsNoArray of shared label names to remove (for batch operations)
nameNoThe name of the label to remove

Input Schema (JSON Schema)

{ "anyOf": [ { "required": [ "labels" ] }, { "required": [ "name" ] } ], "properties": { "labels": { "description": "Array of shared label names to remove (for batch operations)", "items": { "properties": { "name": { "description": "The name of the label to remove", "type": "string" } }, "required": [ "name" ], "type": "object" }, "type": "array" }, "name": { "description": "The name of the label to remove", "type": "string" } }, "type": "object" }