Kong · Capability

Konnect API - Go SDK — CustomPlugins

Konnect API - Go SDK — CustomPlugins. 5 operations. Lead operation: List all CustomPlugins. Self-contained Naftiko capability covering one Kong business surface.

Run with Naftiko KongCustomPlugins

What You Can Do

GET
Listcustomplugin — List all CustomPlugins
/v1/v2/control-planes/{controlplaneid}/core-entities/custom-plugins
POST
Createcustomplugin — Create a new CustomPlugin
/v1/v2/control-planes/{controlplaneid}/core-entities/custom-plugins
DELETE
Deletecustomplugin — Delete a CustomPlugin
/v1/v2/control-planes/{controlplaneid}/core-entities/custom-plugins/{custompluginid}
GET
Getcustomplugin — Get a CustomPlugin
/v1/v2/control-planes/{controlplaneid}/core-entities/custom-plugins/{custompluginid}
PUT
Upsertcustomplugin — Upsert a CustomPlugin
/v1/v2/control-planes/{controlplaneid}/core-entities/custom-plugins/{custompluginid}

MCP Tools

list-all-customplugins

List all CustomPlugins

read-only idempotent
create-new-customplugin

Create a new CustomPlugin

delete-customplugin

Delete a CustomPlugin

idempotent
get-customplugin

Get a CustomPlugin

read-only idempotent
upsert-customplugin

Upsert a CustomPlugin

idempotent

Capability Spec

konnect-platform-customplugins.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Konnect API - Go SDK — CustomPlugins
  description: 'Konnect API - Go SDK — CustomPlugins. 5 operations. Lead operation: List all CustomPlugins. Self-contained
    Naftiko capability covering one Kong business surface.'
  tags:
  - Kong
  - CustomPlugins
  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-customplugins
    baseUri: https://global.api.konghq.com
    description: Konnect API - Go SDK — CustomPlugins business capability. Self-contained, no shared references.
    resources:
    - name: v2-control-planes-controlPlaneId-core-entities-custom-plugins
      path: /v2/control-planes/{controlPlaneId}/core-entities/custom-plugins
      operations:
      - name: listcustomplugin
        method: GET
        description: List all CustomPlugins
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createcustomplugin
        method: POST
        description: Create a new CustomPlugin
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: v2-control-planes-controlPlaneId-core-entities-custom-plugins-CustomPluginId
      path: /v2/control-planes/{controlPlaneId}/core-entities/custom-plugins/{CustomPluginId}
      operations:
      - name: deletecustomplugin
        method: DELETE
        description: Delete a CustomPlugin
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: getcustomplugin
        method: GET
        description: Get a CustomPlugin
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: upsertcustomplugin
        method: PUT
        description: Upsert a CustomPlugin
        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-customplugins-rest
    port: 8080
    description: REST adapter for Konnect API - Go SDK — CustomPlugins. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/v2/control-planes/{controlplaneid}/core-entities/custom-plugins
      name: v2-control-planes-controlplaneid-core-entities-custom-plugins
      description: REST surface for v2-control-planes-controlPlaneId-core-entities-custom-plugins.
      operations:
      - method: GET
        name: listcustomplugin
        description: List all CustomPlugins
        call: konnect-platform-customplugins.listcustomplugin
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createcustomplugin
        description: Create a new CustomPlugin
        call: konnect-platform-customplugins.createcustomplugin
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/v2/control-planes/{controlplaneid}/core-entities/custom-plugins/{custompluginid}
      name: v2-control-planes-controlplaneid-core-entities-custom-plugins-custompluginid
      description: REST surface for v2-control-planes-controlPlaneId-core-entities-custom-plugins-CustomPluginId.
      operations:
      - method: DELETE
        name: deletecustomplugin
        description: Delete a CustomPlugin
        call: konnect-platform-customplugins.deletecustomplugin
        outputParameters:
        - type: object
          mapping: $.
      - method: GET
        name: getcustomplugin
        description: Get a CustomPlugin
        call: konnect-platform-customplugins.getcustomplugin
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: upsertcustomplugin
        description: Upsert a CustomPlugin
        call: konnect-platform-customplugins.upsertcustomplugin
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: konnect-platform-customplugins-mcp
    port: 9090
    transport: http
    description: MCP adapter for Konnect API - Go SDK — CustomPlugins. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: list-all-customplugins
      description: List all CustomPlugins
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: konnect-platform-customplugins.listcustomplugin
      outputParameters:
      - type: object
        mapping: $.
    - name: create-new-customplugin
      description: Create a new CustomPlugin
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: konnect-platform-customplugins.createcustomplugin
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: delete-customplugin
      description: Delete a CustomPlugin
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: konnect-platform-customplugins.deletecustomplugin
      outputParameters:
      - type: object
        mapping: $.
    - name: get-customplugin
      description: Get a CustomPlugin
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: konnect-platform-customplugins.getcustomplugin
      outputParameters:
      - type: object
        mapping: $.
    - name: upsert-customplugin
      description: Upsert a CustomPlugin
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: konnect-platform-customplugins.upsertcustomplugin
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.