Skip to content

v0.4.0: Comment Support

Latest

Choose a tag to compare

@hoffination hoffination released this 11 Nov 02:57

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 includeComments parameter to fetch card with all comment data in a single request
    • Efficiently retrieves comment discussions using Trello's actions=commentCard API parameter
  • addComment - Add a new comment to any card

    • Simple interface: just provide cardId and text
    • Returns full comment action object with metadata
  • updateComment - Update existing comment text

    • Modify comments by cardId and commentId
    • Idempotent operation for safe retries
  • 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 discussion
  • comment-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