todoist_create_label
Create and customize new labels in Todoist, specifying name, color, favorite status, and order to organize tasks efficiently within the Enhanced Todoist MCP Server Extended.
Instructions
Create a new label.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
color | No | Label color name or code (e.g., 'berry_red', '#FF0000') (optional). | |
isFavorite | No | Whether the label should be a favorite (optional). | |
name | Yes | The name of the label. | |
order | No | The order of the label in the list (optional). |
Input Schema (JSON Schema)
{
"properties": {
"color": {
"description": "Label color name or code (e.g., 'berry_red', '#FF0000') (optional).",
"type": "string"
},
"isFavorite": {
"description": "Whether the label should be a favorite (optional).",
"type": "boolean"
},
"name": {
"description": "The name of the label.",
"type": "string"
},
"order": {
"description": "The order of the label in the list (optional).",
"type": "number"
}
},
"required": [
"name"
],
"type": "object"
}