Skip to content

Comment Tools

Manage comments on issues via MCP — add, update, and delete.

add-comment

Add a comment to an issue.

Parameters

ParameterTypeRequiredDescription
issue_idintegerOne ofThe numeric ID of the issue (provide issue_id or issue_key, not both)
issue_keystringOne ofThe issue key, e.g. "KD-0042" (provide issue_id or issue_key, not both)
contentstringYesComment text (max 10,000 characters)

Behavior

  • The authenticated user is automatically recorded as the comment author
  • Returns the created comment with ID, content, author, and timestamp

Example Prompt

Add a comment to the email validation bug: "Root cause identified — the email regex doesn't allow plus signs"

update-comment

Edit an existing comment on an issue.

Parameters

ParameterTypeRequiredDescription
issue_idintegerYesThe ID of the issue the comment belongs to
comment_idintegerYesThe ID of the comment to update
contentstringYesThe new comment text (max 10,000 characters)

Behavior

  • Requires Comments: Update permission (Own scope: own comments only, All scope: any comment)
  • Read kendo://issues/{id} first to find comment IDs
  • Returns the updated comment with ID, content, author, and timestamp

Example Prompt

Update comment #5 on KD-42 to say "Root cause confirmed — the regex needs to allow plus signs"

delete-comment

Permanently delete a comment from an issue.

Destructive

This action cannot be undone. The comment and its attachments are permanently removed.

Parameters

ParameterTypeRequiredDescription
issue_idintegerYesThe ID of the issue the comment belongs to
comment_idintegerYesThe ID of the comment to delete

Behavior

  • Requires Comments: Delete permission (Own scope: own comments only, All scope: any comment)
  • Read kendo://issues/{id} first to find comment IDs
  • Returns confirmation with the deleted comment's ID

Example Prompt

Delete comment #3 on KD-42, it was posted on the wrong issue

See Also

  • Resources — Read comments via kendo://issues/{id} (includes full comment history)
  • Comments API — REST endpoints for comment management