add-labels
Add specific labels to Trello cards by providing card and label IDs. Simplifies label management within the Trello platform using the MCP server.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
items | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"items": {
"items": {
"additionalProperties": false,
"properties": {
"cardId": {
"description": "ID of the card to add the label to",
"type": "string"
},
"labelId": {
"description": "ID of the label to add",
"type": "string"
}
},
"required": [
"cardId",
"labelId"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"items"
],
"type": "object"
}