add_card_to_list
Create and add a new card to a specified list in Trello, including optional details like description, due date, and labels, for organized task management.
Instructions
Add a new card to a specified list
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| description | No | Description of the card | |
| dueDate | No | Due date for the card (ISO 8601 format) | |
| labels | No | Array of label IDs to apply to the card | |
| listId | Yes | ID of the list to add the card to | |
| name | Yes | Name of the card | 
Input Schema (JSON Schema)
{
  "properties": {
    "description": {
      "description": "Description of the card",
      "type": "string"
    },
    "dueDate": {
      "description": "Due date for the card (ISO 8601 format)",
      "type": "string"
    },
    "labels": {
      "description": "Array of label IDs to apply to the card",
      "items": {
        "type": "string"
      },
      "type": "array"
    },
    "listId": {
      "description": "ID of the list to add the card to",
      "type": "string"
    },
    "name": {
      "description": "Name of the card",
      "type": "string"
    }
  },
  "required": [
    "listId",
    "name"
  ],
  "type": "object"
}