Claude MCP Trello

trello_add_card

Adds a card to the specified list.

Input Schema

NameRequiredDescriptionDefault
descriptionNoDetails of the card (optional)
dueDateNoDue date (can be specified in ISO8601 format, etc. Optional)
labelsNoArray of label IDs (optional)
listIdYesThe ID of the list to add to
nameYesThe title of the card

Input Schema (JSON Schema)

{ "properties": { "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": "Array of label IDs (optional)", "items": { "type": "string" }, "type": "array" }, "listId": { "description": "The ID of the list to add to", "type": "string" }, "name": { "description": "The title of the card", "type": "string" } }, "required": [ "listId", "name" ], "type": "object" }