Kong · Capability

Konnect API - Go SDK — Add-Ons

Konnect API - Go SDK — Add-Ons. 5 operations. Lead operation: Create Add-On. Self-contained Naftiko capability covering one Kong business surface.

Run with Naftiko KongAdd-Ons

What You Can Do

POST
Createaddon — Create Add-On
/v1/v2/cloud-gateways/add-ons
GET
Listaddons — List Add-Ons
/v1/v2/cloud-gateways/add-ons
GET
Getaddon — Get Add-On
/v1/v2/cloud-gateways/add-ons/{addonid}
DELETE
Deleteaddon — Delete Add-On
/v1/v2/cloud-gateways/add-ons/{addonid}
PATCH
Updateaddon — Update Add-On
/v1/v2/cloud-gateways/add-ons/{addonid}

MCP Tools

create-add

Create Add-On

list-add-ons

List Add-Ons

read-only idempotent
get-add

Get Add-On

read-only idempotent
delete-add

Delete Add-On

idempotent
update-add

Update Add-On

idempotent

Capability Spec

konnect-platform-add-ons.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Konnect API - Go SDK — Add-Ons
  description: 'Konnect API - Go SDK — Add-Ons. 5 operations. Lead operation: Create Add-On. Self-contained Naftiko capability
    covering one Kong business surface.'
  tags:
  - Kong
  - Add-Ons
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    KONG_API_KEY: KONG_API_KEY
capability:
  consumes:
  - type: http
    namespace: konnect-platform-add-ons
    baseUri: https://global.api.konghq.com
    description: Konnect API - Go SDK — Add-Ons business capability. Self-contained, no shared references.
    resources:
    - name: v2-cloud-gateways-add-ons
      path: /v2/cloud-gateways/add-ons
      operations:
      - name: createaddon
        method: POST
        description: Create Add-On
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: listaddons
        method: GET
        description: List Add-Ons
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: v2-cloud-gateways-add-ons-addOnId
      path: /v2/cloud-gateways/add-ons/{addOnId}
      operations:
      - name: getaddon
        method: GET
        description: Get Add-On
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: deleteaddon
        method: DELETE
        description: Delete Add-On
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: updateaddon
        method: PATCH
        description: Update Add-On
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: bearer
      token: '{{env.KONG_API_KEY}}'
  exposes:
  - type: rest
    namespace: konnect-platform-add-ons-rest
    port: 8080
    description: REST adapter for Konnect API - Go SDK — Add-Ons. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/v2/cloud-gateways/add-ons
      name: v2-cloud-gateways-add-ons
      description: REST surface for v2-cloud-gateways-add-ons.
      operations:
      - method: POST
        name: createaddon
        description: Create Add-On
        call: konnect-platform-add-ons.createaddon
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: GET
        name: listaddons
        description: List Add-Ons
        call: konnect-platform-add-ons.listaddons
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/v2/cloud-gateways/add-ons/{addonid}
      name: v2-cloud-gateways-add-ons-addonid
      description: REST surface for v2-cloud-gateways-add-ons-addOnId.
      operations:
      - method: GET
        name: getaddon
        description: Get Add-On
        call: konnect-platform-add-ons.getaddon
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deleteaddon
        description: Delete Add-On
        call: konnect-platform-add-ons.deleteaddon
        outputParameters:
        - type: object
          mapping: $.
      - method: PATCH
        name: updateaddon
        description: Update Add-On
        call: konnect-platform-add-ons.updateaddon
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: konnect-platform-add-ons-mcp
    port: 9090
    transport: http
    description: MCP adapter for Konnect API - Go SDK — Add-Ons. One tool per consumed operation, routed inline through this
      capability's consumes block.
    tools:
    - name: create-add
      description: Create Add-On
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: konnect-platform-add-ons.createaddon
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: list-add-ons
      description: List Add-Ons
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: konnect-platform-add-ons.listaddons
      outputParameters:
      - type: object
        mapping: $.
    - name: get-add
      description: Get Add-On
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: konnect-platform-add-ons.getaddon
      outputParameters:
      - type: object
        mapping: $.
    - name: delete-add
      description: Delete Add-On
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: konnect-platform-add-ons.deleteaddon
      outputParameters:
      - type: object
        mapping: $.
    - name: update-add
      description: Update Add-On
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: konnect-platform-add-ons.updateaddon
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.