Todoist MCP Server

by Chrusic
Verified

todoist_create_personal_label

Create a new personal label in Todoist

Input Schema

NameRequiredDescriptionDefault
colorNoColor of the label (optional)
is_favoriteNoWhether the label is a favorite (optional)
nameYesName of the label
orderNoOrder of the label (optional)

Input Schema (JSON Schema)

{ "properties": { "color": { "description": "Color of the label (optional)", "enum": [ "berry_red", "red", "orange", "yellow", "olive_green", "lime_green", "green", "mint_green", "teal", "sky_blue", "light_blue", "blue", "grape", "violet", "lavender", "magenta", "salmon", "charcoal", "grey", "taupe" ], "type": "string" }, "is_favorite": { "description": "Whether the label is a favorite (optional)", "type": "boolean" }, "name": { "description": "Name of the label", "type": "string" }, "order": { "description": "Order of the label (optional)", "type": "number" } }, "required": [ "name" ], "type": "object" }