update-label-field
Modify label fields (name or color) in Trello using the specified label ID. Streamline project management with precise label updates via Advanced Trello MCP Server.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
field | Yes | Field to update (name or color) | |
labelId | Yes | ID of the label to update | |
value | Yes | New value for the field |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"field": {
"description": "Field to update (name or color)",
"enum": [
"name",
"color"
],
"type": "string"
},
"labelId": {
"description": "ID of the label to update",
"type": "string"
},
"value": {
"description": "New value for the field",
"type": "string"
}
},
"required": [
"labelId",
"field",
"value"
],
"type": "object"
}