get-label
Retrieve Trello label details by specifying the label ID and optional fields to include. Simplify label management and integration with the Advanced Trello MCP Server.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
fields | No | Comma-separated list of fields to include | |
labelId | Yes | ID of the label to retrieve |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"fields": {
"description": "Comma-separated list of fields to include",
"type": "string"
},
"labelId": {
"description": "ID of the label to retrieve",
"type": "string"
}
},
"required": [
"labelId"
],
"type": "object"
}