Backlog MCP Server

get_issue_comments

Retrieve comments for a specific issue in Backlog using issue ID or key, with options to filter by ID range, limit results, or sort order.

Instructions

Returns list of comments for an issue

Input Schema

NameRequiredDescriptionDefault
countNoNumber of comments to retrieve
issueIdOrKeyYesIssue ID or issue key
maxIdNoMaximum comment ID
minIdNoMinimum comment ID
orderNoSort order

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "count": { "description": "Number of comments to retrieve", "type": "number" }, "issueIdOrKey": { "description": "Issue ID or issue key", "type": [ "string", "number" ] }, "maxId": { "description": "Maximum comment ID", "type": "number" }, "minId": { "description": "Minimum comment ID", "type": "number" }, "order": { "description": "Sort order", "enum": [ "asc", "desc" ], "type": "string" } }, "required": [ "issueIdOrKey" ], "type": "object" }
ID: lktnbgdbjl