Atlassian · Capability

Atlassian The Jira Cloud platform REST API — Tasks

Atlassian The Jira Cloud platform REST API — Tasks. 2 operations. Lead operation: Atlassian Get Task. Self-contained Naftiko capability covering one Atlassian business surface.

Run with Naftiko AtlassianTasks

What You Can Do

GET
Atlassiangettask — Atlassian Get Task
/v1/api/3/task/{taskid}
POST
Atlassiancanceltask — Atlassian Cancel Task
/v1/api/3/task/{taskid}/cancel

MCP Tools

atlassian-get-task

Atlassian Get Task

read-only idempotent
atlassian-cancel-task

Atlassian Cancel Task

Capability Spec

jira-tasks.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Atlassian The Jira Cloud platform REST API — Tasks
  description: 'Atlassian The Jira Cloud platform REST API — Tasks. 2 operations. Lead operation: Atlassian Get Task. Self-contained
    Naftiko capability covering one Atlassian business surface.'
  tags:
  - Atlassian
  - Tasks
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    ATLASSIAN_API_KEY: ATLASSIAN_API_KEY
capability:
  consumes:
  - type: http
    namespace: jira-tasks
    baseUri: https://your-domain.atlassian.net
    description: Atlassian The Jira Cloud platform REST API — Tasks business capability. Self-contained, no shared references.
    resources:
    - name: rest-api-3-task-taskId
      path: /rest/api/3/task/{taskId}
      operations:
      - name: atlassiangettask
        method: GET
        description: Atlassian Get Task
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: taskId
          in: path
          type: string
          description: The ID of the task.
          required: true
    - name: rest-api-3-task-taskId-cancel
      path: /rest/api/3/task/{taskId}/cancel
      operations:
      - name: atlassiancanceltask
        method: POST
        description: Atlassian Cancel Task
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: taskId
          in: path
          type: string
          description: The ID of the task.
          required: true
    authentication:
      type: bearer
      token: '{{env.ATLASSIAN_API_KEY}}'
  exposes:
  - type: rest
    namespace: jira-tasks-rest
    port: 8080
    description: REST adapter for Atlassian The Jira Cloud platform REST API — Tasks. One Spectral-compliant resource per
      consumed operation, prefixed with /v1.
    resources:
    - path: /v1/api/3/task/{taskid}
      name: rest-api-3-task-taskid
      description: REST surface for rest-api-3-task-taskId.
      operations:
      - method: GET
        name: atlassiangettask
        description: Atlassian Get Task
        call: jira-tasks.atlassiangettask
        with:
          taskId: rest.taskId
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/api/3/task/{taskid}/cancel
      name: rest-api-3-task-taskid-cancel
      description: REST surface for rest-api-3-task-taskId-cancel.
      operations:
      - method: POST
        name: atlassiancanceltask
        description: Atlassian Cancel Task
        call: jira-tasks.atlassiancanceltask
        with:
          taskId: rest.taskId
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: jira-tasks-mcp
    port: 9090
    transport: http
    description: MCP adapter for Atlassian The Jira Cloud platform REST API — Tasks. One tool per consumed operation, routed
      inline through this capability's consumes block.
    tools:
    - name: atlassian-get-task
      description: Atlassian Get Task
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: jira-tasks.atlassiangettask
      with:
        taskId: tools.taskId
      outputParameters:
      - type: object
        mapping: $.
    - name: atlassian-cancel-task
      description: Atlassian Cancel Task
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: jira-tasks.atlassiancanceltask
      with:
        taskId: tools.taskId
      outputParameters:
      - type: object
        mapping: $.