MCP Atlassian

jira_add_comment

Add a comment to a Jira issue

Input Schema

NameRequiredDescriptionDefault
commentYesComment text in Markdown format
issue_keyYesJira issue key (e.g., 'PROJ-123')

Input Schema (JSON Schema)

{ "properties": { "comment": { "description": "Comment text in Markdown format", "type": "string" }, "issue_key": { "description": "Jira issue key (e.g., 'PROJ-123')", "type": "string" } }, "required": [ "issue_key", "comment" ], "type": "object" }