create-cards
Generate multiple Trello cards in specified lists using a structured JSON input. Streamline project management by automating card creation with this integration tool in the Advanced Trello MCP Server.
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": {
"description": "Description of the card",
"type": "string"
},
"listId": {
"description": "ID of the list to create the card in",
"type": "string"
},
"name": {
"description": "Name of the card",
"type": "string"
}
},
"required": [
"name",
"listId"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"cards"
],
"type": "object"
}