add-comment
Add comments to Trello cards using a structured input format with card ID and text, enabling precise communication and task updates within project workflows.
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"
}