create-card
Generate and organize Trello cards directly within the Advanced Trello MCP Server by specifying the card name, description, and target list ID for streamlined project management.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | No | Description of the card | |
listId | Yes | ID of the list to create the card in | |
name | Yes | Name of the card |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"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"
}