create-cards
Generate Trello cards in bulk by specifying names, descriptions, and list IDs. Simplify card creation and organization within Trello boards using this tool.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
cards | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"cards": {
"items": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"listId": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"name",
"listId"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"cards"
],
"type": "object"
}