Claude MCP Trello

trello_update_card

Updates the content of a card.

Input Schema

NameRequiredDescriptionDefault
cardIdYesThe ID of the card to be updated
descriptionNoDetails of the card (optional)
dueDateNoDue date (can be specified in ISO8601 format, etc. Optional)
labelsNoAn array of label IDs (optional)
nameNoThe title of the card (optional)

Input Schema (JSON Schema)

{ "properties": { "cardId": { "description": "The ID of the card to be updated", "type": "string" }, "description": { "description": "Details of the card (optional)", "type": "string" }, "dueDate": { "description": "Due date (can be specified in ISO8601 format, etc. Optional)", "type": "string" }, "labels": { "description": "An array of label IDs (optional)", "items": { "type": "string" }, "type": "array" }, "name": { "description": "The title of the card (optional)", "type": "string" } }, "required": [ "cardId" ], "type": "object" }