MCP Server Trello

update_card_details

Update an existing card's details

Input Schema

NameRequiredDescriptionDefault
cardIdYesID of the card to update
descriptionNoNew description for the card
dueDateNoNew due date for the card (ISO 8601 format)
labelsNoNew array of label IDs for the card
nameNoNew name for the card

Input Schema (JSON Schema)

{ "properties": { "cardId": { "description": "ID of the card to update", "type": "string" }, "description": { "description": "New description for the card", "type": "string" }, "dueDate": { "description": "New due date for the card (ISO 8601 format)", "type": "string" }, "labels": { "description": "New array of label IDs for the card", "items": { "type": "string" }, "type": "array" }, "name": { "description": "New name for the card", "type": "string" } }, "required": [ "cardId" ], "type": "object" }