Kong · Capability

Konnect API - Go SDK — Event Gateway Virtual Clusters

Konnect API - Go SDK — Event Gateway Virtual Clusters. 5 operations. Lead operation: List all virtual clusters. Self-contained Naftiko capability covering one Kong business surface.

Run with Naftiko KongEvent Gateway Virtual Clusters

What You Can Do

GET
Listeventgatewayvirtualclusters — List all virtual clusters
/v1/v1/event-gateways/{gatewayid}/virtual-clusters
POST
Createeventgatewayvirtualcluster — Create Virtual Cluster
/v1/v1/event-gateways/{gatewayid}/virtual-clusters
GET
Geteventgatewayvirtualcluster — Get a Virtual Cluster
/v1/v1/event-gateways/{gatewayid}/virtual-clusters/{virtualclusterid}
PUT
Updateeventgatewayvirtualcluster — Update Virtual Cluster
/v1/v1/event-gateways/{gatewayid}/virtual-clusters/{virtualclusterid}
DELETE
Deleteeventgatewayvirtualcluster — Delete Virtual Cluster
/v1/v1/event-gateways/{gatewayid}/virtual-clusters/{virtualclusterid}

MCP Tools

list-all-virtual-clusters

List all virtual clusters

read-only idempotent
create-virtual-cluster

Create Virtual Cluster

get-virtual-cluster

Get a Virtual Cluster

read-only idempotent
update-virtual-cluster

Update Virtual Cluster

idempotent
delete-virtual-cluster

Delete Virtual Cluster

idempotent

Capability Spec

konnect-platform-event-gateway-virtual-clusters.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Konnect API - Go SDK — Event Gateway Virtual Clusters
  description: 'Konnect API - Go SDK — Event Gateway Virtual Clusters. 5 operations. Lead operation: List all virtual clusters.
    Self-contained Naftiko capability covering one Kong business surface.'
  tags:
  - Kong
  - Event Gateway Virtual Clusters
  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-event-gateway-virtual-clusters
    baseUri: https://global.api.konghq.com
    description: Konnect API - Go SDK — Event Gateway Virtual Clusters business capability. Self-contained, no shared references.
    resources:
    - name: v1-event-gateways-gatewayId-virtual-clusters
      path: /v1/event-gateways/{gatewayId}/virtual-clusters
      operations:
      - name: listeventgatewayvirtualclusters
        method: GET
        description: List all virtual clusters
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: filter
          in: query
          type: object
          description: Filter documents returned in the response.
      - name: createeventgatewayvirtualcluster
        method: POST
        description: Create Virtual Cluster
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
    - name: v1-event-gateways-gatewayId-virtual-clusters-virtualClusterId
      path: /v1/event-gateways/{gatewayId}/virtual-clusters/{virtualClusterId}
      operations:
      - name: geteventgatewayvirtualcluster
        method: GET
        description: Get a Virtual Cluster
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: updateeventgatewayvirtualcluster
        method: PUT
        description: Update Virtual Cluster
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
      - name: deleteeventgatewayvirtualcluster
        method: DELETE
        description: Delete Virtual Cluster
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: bearer
      token: '{{env.KONG_API_KEY}}'
  exposes:
  - type: rest
    namespace: konnect-platform-event-gateway-virtual-clusters-rest
    port: 8080
    description: REST adapter for Konnect API - Go SDK — Event Gateway Virtual Clusters. One Spectral-compliant resource per
      consumed operation, prefixed with /v1.
    resources:
    - path: /v1/v1/event-gateways/{gatewayid}/virtual-clusters
      name: v1-event-gateways-gatewayid-virtual-clusters
      description: REST surface for v1-event-gateways-gatewayId-virtual-clusters.
      operations:
      - method: GET
        name: listeventgatewayvirtualclusters
        description: List all virtual clusters
        call: konnect-platform-event-gateway-virtual-clusters.listeventgatewayvirtualclusters
        with:
          filter: rest.filter
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createeventgatewayvirtualcluster
        description: Create Virtual Cluster
        call: konnect-platform-event-gateway-virtual-clusters.createeventgatewayvirtualcluster
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/v1/event-gateways/{gatewayid}/virtual-clusters/{virtualclusterid}
      name: v1-event-gateways-gatewayid-virtual-clusters-virtualclusterid
      description: REST surface for v1-event-gateways-gatewayId-virtual-clusters-virtualClusterId.
      operations:
      - method: GET
        name: geteventgatewayvirtualcluster
        description: Get a Virtual Cluster
        call: konnect-platform-event-gateway-virtual-clusters.geteventgatewayvirtualcluster
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: updateeventgatewayvirtualcluster
        description: Update Virtual Cluster
        call: konnect-platform-event-gateway-virtual-clusters.updateeventgatewayvirtualcluster
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deleteeventgatewayvirtualcluster
        description: Delete Virtual Cluster
        call: konnect-platform-event-gateway-virtual-clusters.deleteeventgatewayvirtualcluster
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: konnect-platform-event-gateway-virtual-clusters-mcp
    port: 9090
    transport: http
    description: MCP adapter for Konnect API - Go SDK — Event Gateway Virtual Clusters. One tool per consumed operation, routed
      inline through this capability's consumes block.
    tools:
    - name: list-all-virtual-clusters
      description: List all virtual clusters
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: konnect-platform-event-gateway-virtual-clusters.listeventgatewayvirtualclusters
      with:
        filter: tools.filter
      outputParameters:
      - type: object
        mapping: $.
    - name: create-virtual-cluster
      description: Create Virtual Cluster
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: konnect-platform-event-gateway-virtual-clusters.createeventgatewayvirtualcluster
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: get-virtual-cluster
      description: Get a Virtual Cluster
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: konnect-platform-event-gateway-virtual-clusters.geteventgatewayvirtualcluster
      outputParameters:
      - type: object
        mapping: $.
    - name: update-virtual-cluster
      description: Update Virtual Cluster
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: konnect-platform-event-gateway-virtual-clusters.updateeventgatewayvirtualcluster
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: delete-virtual-cluster
      description: Delete Virtual Cluster
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: konnect-platform-event-gateway-virtual-clusters.deleteeventgatewayvirtualcluster
      outputParameters:
      - type: object
        mapping: $.