Todoist MCP Server

by Chrusic
Verified

todoist_rename_shared_labels

Rename one or more shared labels in Todoist

Input Schema

NameRequiredDescriptionDefault
labelsNoArray of label rename operations (for batch operations)
nameNoThe name of the existing label to rename
new_nameNoThe new name for the label

Input Schema (JSON Schema)

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