Kong · Capability

Konnect API - Go SDK — Catalog Resources

Konnect API - Go SDK — Catalog Resources. 3 operations. Lead operation: Update Resource. Self-contained Naftiko capability covering one Kong business surface.

Run with Naftiko KongCatalog Resources

What You Can Do

PATCH
Updateresource — Update Resource
/v1/v1/integration-instances/{integrationinstanceid}/resources/{resourceid}
GET
Listresources — List Resources
/v1/v1/resources
GET
Fetchresource — Get a Resource
/v1/v1/resources/{id}

MCP Tools

update-resource

Update Resource

idempotent
list-resources

List Resources

read-only idempotent
get-resource

Get a Resource

read-only idempotent

Capability Spec

konnect-platform-catalog-resources.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Konnect API - Go SDK — Catalog Resources
  description: 'Konnect API - Go SDK — Catalog Resources. 3 operations. Lead operation: Update Resource. Self-contained Naftiko
    capability covering one Kong business surface.'
  tags:
  - Kong
  - Catalog Resources
  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-catalog-resources
    baseUri: https://global.api.konghq.com
    description: Konnect API - Go SDK — Catalog Resources business capability. Self-contained, no shared references.
    resources:
    - name: v1-integration-instances-integrationInstanceId-resources-resourceId
      path: /v1/integration-instances/{integrationInstanceId}/resources/{resourceId}
      operations:
      - name: updateresource
        method: PATCH
        description: Update Resource
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
    - name: v1-resources
      path: /v1/resources
      operations:
      - name: listresources
        method: GET
        description: List Resources
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: v1-resources-id
      path: /v1/resources/{id}
      operations:
      - name: fetchresource
        method: GET
        description: Get a Resource
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: bearer
      token: '{{env.KONG_API_KEY}}'
  exposes:
  - type: rest
    namespace: konnect-platform-catalog-resources-rest
    port: 8080
    description: REST adapter for Konnect API - Go SDK — Catalog Resources. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/v1/integration-instances/{integrationinstanceid}/resources/{resourceid}
      name: v1-integration-instances-integrationinstanceid-resources-resourceid
      description: REST surface for v1-integration-instances-integrationInstanceId-resources-resourceId.
      operations:
      - method: PATCH
        name: updateresource
        description: Update Resource
        call: konnect-platform-catalog-resources.updateresource
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/v1/resources
      name: v1-resources
      description: REST surface for v1-resources.
      operations:
      - method: GET
        name: listresources
        description: List Resources
        call: konnect-platform-catalog-resources.listresources
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/v1/resources/{id}
      name: v1-resources-id
      description: REST surface for v1-resources-id.
      operations:
      - method: GET
        name: fetchresource
        description: Get a Resource
        call: konnect-platform-catalog-resources.fetchresource
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: konnect-platform-catalog-resources-mcp
    port: 9090
    transport: http
    description: MCP adapter for Konnect API - Go SDK — Catalog Resources. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: update-resource
      description: Update Resource
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: konnect-platform-catalog-resources.updateresource
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: list-resources
      description: List Resources
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: konnect-platform-catalog-resources.listresources
      outputParameters:
      - type: object
        mapping: $.
    - name: get-resource
      description: Get a Resource
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: konnect-platform-catalog-resources.fetchresource
      outputParameters:
      - type: object
        mapping: $.