Atlassian · Capability

Atlassian The Jira Cloud platform REST API — Issue Link Types

Atlassian The Jira Cloud platform REST API — Issue Link Types. 5 operations. Lead operation: Atlassian Get Issue Link Types. Self-contained Naftiko capability covering one Atlassian business surface.

Run with Naftiko AtlassianIssue Link Types

What You Can Do

GET
Atlassiangetissuelinktypes — Atlassian Get Issue Link Types
/v1/api/3/issuelinktype
POST
Atlassiancreateissuelinktype — Atlassian Create Issue Link Type
/v1/api/3/issuelinktype
DELETE
Atlassiandeleteissuelinktype — Atlassian Delete Issue Link Type
/v1/api/3/issuelinktype/{issuelinktypeid}
GET
Atlassiangetissuelinktype — Atlassian Get Issue Link Type
/v1/api/3/issuelinktype/{issuelinktypeid}
PUT
Atlassianupdateissuelinktype — Atlassian Update Issue Link Type
/v1/api/3/issuelinktype/{issuelinktypeid}

MCP Tools

atlassian-get-issue-link-types

Atlassian Get Issue Link Types

read-only idempotent
atlassian-create-issue-link-type

Atlassian Create Issue Link Type

atlassian-delete-issue-link-type

Atlassian Delete Issue Link Type

idempotent
atlassian-get-issue-link-type

Atlassian Get Issue Link Type

read-only idempotent
atlassian-update-issue-link-type

Atlassian Update Issue Link Type

idempotent

Capability Spec

jira-issue-link-types.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Atlassian The Jira Cloud platform REST API — Issue Link Types
  description: 'Atlassian The Jira Cloud platform REST API — Issue Link Types. 5 operations. Lead operation: Atlassian Get
    Issue Link Types. Self-contained Naftiko capability covering one Atlassian business surface.'
  tags:
  - Atlassian
  - Issue Link Types
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    ATLASSIAN_API_KEY: ATLASSIAN_API_KEY
capability:
  consumes:
  - type: http
    namespace: jira-issue-link-types
    baseUri: https://your-domain.atlassian.net
    description: Atlassian The Jira Cloud platform REST API — Issue Link Types business capability. Self-contained, no shared
      references.
    resources:
    - name: rest-api-3-issueLinkType
      path: /rest/api/3/issueLinkType
      operations:
      - name: atlassiangetissuelinktypes
        method: GET
        description: Atlassian Get Issue Link Types
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: atlassiancreateissuelinktype
        method: POST
        description: Atlassian Create Issue Link Type
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: rest-api-3-issueLinkType-issueLinkTypeId
      path: /rest/api/3/issueLinkType/{issueLinkTypeId}
      operations:
      - name: atlassiandeleteissuelinktype
        method: DELETE
        description: Atlassian Delete Issue Link Type
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: issueLinkTypeId
          in: path
          type: string
          description: The ID of the issue link type.
          required: true
      - name: atlassiangetissuelinktype
        method: GET
        description: Atlassian Get Issue Link Type
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: issueLinkTypeId
          in: path
          type: string
          description: The ID of the issue link type.
          required: true
      - name: atlassianupdateissuelinktype
        method: PUT
        description: Atlassian Update Issue Link Type
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: issueLinkTypeId
          in: path
          type: string
          description: The ID of the issue link type.
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: bearer
      token: '{{env.ATLASSIAN_API_KEY}}'
  exposes:
  - type: rest
    namespace: jira-issue-link-types-rest
    port: 8080
    description: REST adapter for Atlassian The Jira Cloud platform REST API — Issue Link Types. One Spectral-compliant resource
      per consumed operation, prefixed with /v1.
    resources:
    - path: /v1/api/3/issuelinktype
      name: rest-api-3-issuelinktype
      description: REST surface for rest-api-3-issueLinkType.
      operations:
      - method: GET
        name: atlassiangetissuelinktypes
        description: Atlassian Get Issue Link Types
        call: jira-issue-link-types.atlassiangetissuelinktypes
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: atlassiancreateissuelinktype
        description: Atlassian Create Issue Link Type
        call: jira-issue-link-types.atlassiancreateissuelinktype
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/api/3/issuelinktype/{issuelinktypeid}
      name: rest-api-3-issuelinktype-issuelinktypeid
      description: REST surface for rest-api-3-issueLinkType-issueLinkTypeId.
      operations:
      - method: DELETE
        name: atlassiandeleteissuelinktype
        description: Atlassian Delete Issue Link Type
        call: jira-issue-link-types.atlassiandeleteissuelinktype
        with:
          issueLinkTypeId: rest.issueLinkTypeId
        outputParameters:
        - type: object
          mapping: $.
      - method: GET
        name: atlassiangetissuelinktype
        description: Atlassian Get Issue Link Type
        call: jira-issue-link-types.atlassiangetissuelinktype
        with:
          issueLinkTypeId: rest.issueLinkTypeId
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: atlassianupdateissuelinktype
        description: Atlassian Update Issue Link Type
        call: jira-issue-link-types.atlassianupdateissuelinktype
        with:
          issueLinkTypeId: rest.issueLinkTypeId
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: jira-issue-link-types-mcp
    port: 9090
    transport: http
    description: MCP adapter for Atlassian The Jira Cloud platform REST API — Issue Link Types. One tool per consumed operation,
      routed inline through this capability's consumes block.
    tools:
    - name: atlassian-get-issue-link-types
      description: Atlassian Get Issue Link Types
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: jira-issue-link-types.atlassiangetissuelinktypes
      outputParameters:
      - type: object
        mapping: $.
    - name: atlassian-create-issue-link-type
      description: Atlassian Create Issue Link Type
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: jira-issue-link-types.atlassiancreateissuelinktype
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: atlassian-delete-issue-link-type
      description: Atlassian Delete Issue Link Type
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: jira-issue-link-types.atlassiandeleteissuelinktype
      with:
        issueLinkTypeId: tools.issueLinkTypeId
      outputParameters:
      - type: object
        mapping: $.
    - name: atlassian-get-issue-link-type
      description: Atlassian Get Issue Link Type
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: jira-issue-link-types.atlassiangetissuelinktype
      with:
        issueLinkTypeId: tools.issueLinkTypeId
      outputParameters:
      - type: object
        mapping: $.
    - name: atlassian-update-issue-link-type
      description: Atlassian Update Issue Link Type
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: jira-issue-link-types.atlassianupdateissuelinktype
      with:
        issueLinkTypeId: tools.issueLinkTypeId
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.