jira_add_comment
Add a comment to a JIRA issue by specifying the issue key and comment text, enabling AI assistants to interact with JIRA APIs through the JIRA MCP Server.
Instructions
Add a comment to a JIRA issue
Input Schema
Name | Required | Description | Default |
---|---|---|---|
comment | Yes | Comment text | |
issueKey | Yes | The JIRA issue key |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"comment": {
"description": "Comment text",
"type": "string"
},
"issueKey": {
"description": "The JIRA issue key",
"type": "string"
}
},
"required": [
"issueKey",
"comment"
],
"type": "object"
}