Tool details
| Field | Value |
|---|---|
| Name | jira__add_comment |
| Group | Integrations |
Playground
Input schema
input-schema.json
{
"type": "object",
"properties": {
"cloudId": {
"type": "string",
"description": "Atlassian cloud ID from OAuth accessible resources"
},
"issueIdOrKey": {
"type": "string",
"description": "Jira issue ID or key"
},
"body": {
"anyOf": [
{
"type": "string",
"description": "Plain text. The API converts this to Atlassian Document Format before sending to Jira."
},
{
"type": "object",
"description": "Atlassian Document Format document object, for example { type: \"doc\", version: 1, content: [...] }."
}
],
"description": "Jira rich text content. Pass plain text or a full Atlassian Document Format document."
}
},
"required": [
"cloudId",
"issueIdOrKey",
"body"
],
"description": "Input schema for the jira__add_comment tool."
}