create-labels
Automate label creation in Trello boards by specifying board ID, label name, and color. Simplify organization and categorization of tasks using predefined options.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
labels | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"labels": {
"items": {
"additionalProperties": false,
"properties": {
"boardId": {
"description": "ID of the board to create the label in",
"type": "string"
},
"color": {
"description": "Color of the label",
"enum": [
"yellow",
"purple",
"blue",
"red",
"green",
"orange",
"black",
"sky",
"pink",
"lime"
],
"type": "string"
},
"name": {
"description": "Name of the label",
"type": "string"
}
},
"required": [
"boardId",
"name",
"color"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"labels"
],
"type": "object"
}