create-card
Create a Trello card with a specified name and list ID using the MCP server. Input name, description, and list ID to organize tasks efficiently.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | No | ||
listId | Yes | ||
name | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"listId": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"name",
"listId"
],
"type": "object"
}