What's New
This release adds comprehensive comment management capabilities to the Trello MCP server, addressing feature request #2.
New Tools
-
getCard- Retrieve a specific card by ID with optional comments- New
includeCommentsparameter to fetch card with all comment data in a single request - Efficiently retrieves comment discussions using Trello's
actions=commentCardAPI parameter
- New
-
addComment- Add a new comment to any card- Simple interface: just provide
cardIdandtext - Returns full comment action object with metadata
- Simple interface: just provide
-
updateComment- Update existing comment text- Modify comments by
cardIdandcommentId - Idempotent operation for safe retries
- Modify comments by
-
deleteComment- Remove comments from cards- Permanent deletion of comment actions
- Marked as destructive to ensure careful usage
New Prompts
card-discussion- View a card with all its comments formatted as a readable discussioncomment-on-card- Guided workflow for adding comments to cards
Design Philosophy
This implementation keeps the MCP context efficient by avoiding a dedicated getComments tool. Instead, comments are retrieved through the versatile getCard tool when needed, reducing the total number of tools exposed to AI assistants.
Closes
- #2 Feature Request: Support for getting and updating card comments
Full Changelog: v0.3.1...v0.4.0