mcp-jira-server

add_comment

Add a comment to an existing issue

Input Schema

NameRequiredDescriptionDefault
commentYesComment text to add to the issue
issue_keyYesIssue key (e.g., PRJ-123)
working_dirYesWorking directory containing .jira-config.json

Input Schema (JSON Schema)

{ "properties": { "comment": { "description": "Comment text to add to the issue", "type": "string" }, "issue_key": { "description": "Issue key (e.g., PRJ-123)", "type": "string" }, "working_dir": { "description": "Working directory containing .jira-config.json", "type": "string" } }, "required": [ "working_dir", "issue_key", "comment" ], "type": "object" }