add_jira_comment
Add a comment to a Jira issue by specifying the issue key and comment text, enabling efficient issue tracking and collaboration through the Jira MCP Server.
Instructions
Add a comment to a Jira issue
Input Schema
Name | Required | Description | Default |
---|---|---|---|
comment | Yes | The comment text | |
issue_key | Yes | The issue key (e.g., PROJECT-123) |
Input Schema (JSON Schema)
{
"properties": {
"comment": {
"description": "The comment text",
"type": "string"
},
"issue_key": {
"description": "The issue key (e.g., PROJECT-123)",
"type": "string"
}
},
"required": [
"issue_key",
"comment"
],
"type": "object"
}