create_card
Add cards to Trello lists by specifying list ID, name, and description. Simplifies task management on Multi-MCPs by integrating with Trello's API.
Instructions
Create a card in a Trello list
Input Schema
Name | Required | Description | Default |
---|---|---|---|
desc | No | ||
list_id | Yes | ||
name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"desc": {
"type": "string"
},
"list_id": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"list_id",
"name"
],
"type": "object"
}