Atlassian · Capability

Atlassian rest/api/3/issue/ — Issue Comments

Atlassian rest/api/3/issue/ — Issue Comments. 5 operations. Lead operation: Atlassian Get Comments. Self-contained Naftiko capability covering one Atlassian business surface.

Run with Naftiko AtlassianIssue Comments

What You Can Do

GET
Atlassiangetcomments — Atlassian Get Comments
/v1/api/3/issue/{issueidorkey}/comment
POST
Atlassianaddcomment — Atlassian Add Comment
/v1/api/3/issue/{issueidorkey}/comment
DELETE
Atlassiandeletecomment — Atlassian Delete Comment
/v1/api/3/issue/{issueidorkey}/comment/{id}
GET
Atlassiangetcomment — Atlassian Get Comment
/v1/api/3/issue/{issueidorkey}/comment/{id}
PUT
Atlassianupdatecomment — Atlassian Update Comment
/v1/api/3/issue/{issueidorkey}/comment/{id}

MCP Tools

atlassian-get-comments

Atlassian Get Comments

read-only idempotent
atlassian-add-comment

Atlassian Add Comment

atlassian-delete-comment

Atlassian Delete Comment

idempotent
atlassian-get-comment

Atlassian Get Comment

read-only idempotent
atlassian-update-comment

Atlassian Update Comment

idempotent

Capability Spec

rest-api-3-issue--issue-comments.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Atlassian rest/api/3/issue/ — Issue Comments
  description: 'Atlassian rest/api/3/issue/ — Issue Comments. 5 operations. Lead operation: Atlassian Get Comments. Self-contained
    Naftiko capability covering one Atlassian business surface.'
  tags:
  - Atlassian
  - Issue Comments
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    ATLASSIAN_API_KEY: ATLASSIAN_API_KEY
capability:
  consumes:
  - type: http
    namespace: rest-api-3-issue--issue-comments
    baseUri: https://your-domain.atlassian.net
    description: Atlassian rest/api/3/issue/ — Issue Comments business capability. Self-contained, no shared references.
    resources:
    - name: rest-api-3-issue-issueIdOrKey-comment
      path: /rest/api/3/issue/{issueIdOrKey}/comment
      operations:
      - name: atlassiangetcomments
        method: GET
        description: Atlassian Get Comments
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: issueIdOrKey
          in: path
          type: string
          description: The ID or key of the issue.
          required: true
        - name: startAt
          in: query
          type: integer
          description: The index of the first item to return in a page of results (page offset).
        - name: maxResults
          in: query
          type: integer
          description: The maximum number of items to return per page.
        - name: orderBy
          in: query
          type: string
          description: '[Order](#ordering) the results by a field. Accepts *created* to sort comments by their created date.'
        - name: expand
          in: query
          type: string
          description: Use [expand](#expansion) to include additional information about comments in the response. This parameter
            accepts `renderedBody`, which returns the comment body
      - name: atlassianaddcomment
        method: POST
        description: Atlassian Add Comment
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: issueIdOrKey
          in: path
          type: string
          description: The ID or key of the issue.
          required: true
        - name: expand
          in: query
          type: string
          description: Use [expand](#expansion) to include additional information about comments in the response. This parameter
            accepts `renderedBody`, which returns the comment body
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: rest-api-3-issue-issueIdOrKey-comment-id
      path: /rest/api/3/issue/{issueIdOrKey}/comment/{id}
      operations:
      - name: atlassiandeletecomment
        method: DELETE
        description: Atlassian Delete Comment
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: issueIdOrKey
          in: path
          type: string
          description: The ID or key of the issue.
          required: true
        - name: id
          in: path
          type: string
          description: The ID of the comment.
          required: true
      - name: atlassiangetcomment
        method: GET
        description: Atlassian Get Comment
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: issueIdOrKey
          in: path
          type: string
          description: The ID or key of the issue.
          required: true
        - name: id
          in: path
          type: string
          description: The ID of the comment.
          required: true
        - name: expand
          in: query
          type: string
          description: Use [expand](#expansion) to include additional information about comments in the response. This parameter
            accepts `renderedBody`, which returns the comment body
      - name: atlassianupdatecomment
        method: PUT
        description: Atlassian Update Comment
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: issueIdOrKey
          in: path
          type: string
          description: The ID or key of the issue.
          required: true
        - name: id
          in: path
          type: string
          description: The ID of the comment.
          required: true
        - name: notifyUsers
          in: query
          type: boolean
          description: Whether users are notified when a comment is updated.
        - name: overrideEditableFlag
          in: query
          type: boolean
          description: Whether screen security is overridden to enable uneditable fields to be edited. Available to Connect
            app users with the *Administer Jira* [global permission](ht
        - name: expand
          in: query
          type: string
          description: Use [expand](#expansion) to include additional information about comments in the response. This parameter
            accepts `renderedBody`, which returns the comment body
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
  exposes:
  - type: rest
    namespace: rest-api-3-issue--issue-comments-rest
    port: 8080
    description: REST adapter for Atlassian rest/api/3/issue/ — Issue Comments. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/api/3/issue/{issueidorkey}/comment
      name: rest-api-3-issue-issueidorkey-comment
      description: REST surface for rest-api-3-issue-issueIdOrKey-comment.
      operations:
      - method: GET
        name: atlassiangetcomments
        description: Atlassian Get Comments
        call: rest-api-3-issue--issue-comments.atlassiangetcomments
        with:
          issueIdOrKey: rest.issueIdOrKey
          startAt: rest.startAt
          maxResults: rest.maxResults
          orderBy: rest.orderBy
          expand: rest.expand
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: atlassianaddcomment
        description: Atlassian Add Comment
        call: rest-api-3-issue--issue-comments.atlassianaddcomment
        with:
          issueIdOrKey: rest.issueIdOrKey
          expand: rest.expand
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/api/3/issue/{issueidorkey}/comment/{id}
      name: rest-api-3-issue-issueidorkey-comment-id
      description: REST surface for rest-api-3-issue-issueIdOrKey-comment-id.
      operations:
      - method: DELETE
        name: atlassiandeletecomment
        description: Atlassian Delete Comment
        call: rest-api-3-issue--issue-comments.atlassiandeletecomment
        with:
          issueIdOrKey: rest.issueIdOrKey
          id: rest.id
        outputParameters:
        - type: object
          mapping: $.
      - method: GET
        name: atlassiangetcomment
        description: Atlassian Get Comment
        call: rest-api-3-issue--issue-comments.atlassiangetcomment
        with:
          issueIdOrKey: rest.issueIdOrKey
          id: rest.id
          expand: rest.expand
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: atlassianupdatecomment
        description: Atlassian Update Comment
        call: rest-api-3-issue--issue-comments.atlassianupdatecomment
        with:
          issueIdOrKey: rest.issueIdOrKey
          id: rest.id
          notifyUsers: rest.notifyUsers
          overrideEditableFlag: rest.overrideEditableFlag
          expand: rest.expand
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: rest-api-3-issue--issue-comments-mcp
    port: 9090
    transport: http
    description: MCP adapter for Atlassian rest/api/3/issue/ — Issue Comments. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: atlassian-get-comments
      description: Atlassian Get Comments
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: rest-api-3-issue--issue-comments.atlassiangetcomments
      with:
        issueIdOrKey: tools.issueIdOrKey
        startAt: tools.startAt
        maxResults: tools.maxResults
        orderBy: tools.orderBy
        expand: tools.expand
      outputParameters:
      - type: object
        mapping: $.
    - name: atlassian-add-comment
      description: Atlassian Add Comment
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: rest-api-3-issue--issue-comments.atlassianaddcomment
      with:
        issueIdOrKey: tools.issueIdOrKey
        expand: tools.expand
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: atlassian-delete-comment
      description: Atlassian Delete Comment
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: rest-api-3-issue--issue-comments.atlassiandeletecomment
      with:
        issueIdOrKey: tools.issueIdOrKey
        id: tools.id
      outputParameters:
      - type: object
        mapping: $.
    - name: atlassian-get-comment
      description: Atlassian Get Comment
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: rest-api-3-issue--issue-comments.atlassiangetcomment
      with:
        issueIdOrKey: tools.issueIdOrKey
        id: tools.id
        expand: tools.expand
      outputParameters:
      - type: object
        mapping: $.
    - name: atlassian-update-comment
      description: Atlassian Update Comment
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: rest-api-3-issue--issue-comments.atlassianupdatecomment
      with:
        issueIdOrKey: tools.issueIdOrKey
        id: tools.id
        notifyUsers: tools.notifyUsers
        overrideEditableFlag: tools.overrideEditableFlag
        expand: tools.expand
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.