add-comment
Add comments to Trello cards by specifying the card ID and comment text, enabling direct communication and task updates within the Trello platform.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
cardId | Yes | ID of the card to comment on | |
text | Yes | Comment text |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"cardId": {
"description": "ID of the card to comment on",
"type": "string"
},
"text": {
"description": "Comment text",
"type": "string"
}
},
"required": [
"cardId",
"text"
],
"type": "object"
}