Backlog MCP Server

add_issue_comment

Add a comment to a Backlog issue, specify content, notify users, and include attachments for enhanced collaboration and issue tracking.

Instructions

Adds a comment to an issue

Input Schema

NameRequiredDescriptionDefault
attachmentIdNoAttachment IDs
contentYesComment content
issueIdOrKeyYesIssue ID or issue key
notifiedUserIdNoUser IDs to notify

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "attachmentId": { "description": "Attachment IDs", "items": { "type": "number" }, "type": "array" }, "content": { "description": "Comment content", "type": "string" }, "issueIdOrKey": { "description": "Issue ID or issue key", "type": [ "string", "number" ] }, "notifiedUserId": { "description": "User IDs to notify", "items": { "type": "number" }, "type": "array" } }, "required": [ "issueIdOrKey", "content" ], "type": "object" }
ID: lktnbgdbjl