Kong · Capability

Konnect API - Go SDK — DCR Providers

Konnect API - Go SDK — DCR Providers. 6 operations. Lead operation: Create DCR provider. Self-contained Naftiko capability covering one Kong business surface.

Run with Naftiko KongDCR Providers

What You Can Do

POST
Createdcrprovider — Create DCR provider
/v1/v2/dcr-providers
GET
Listdcrproviders — List DCR Providers
/v1/v2/dcr-providers
GET
Getdcrprovider — Get a DCR provider
/v1/v2/dcr-providers/{dcrproviderid}
PATCH
Updatedcrprovider — Update DCR provider
/v1/v2/dcr-providers/{dcrproviderid}
DELETE
Deletedcrprovider — Delete DCR provider
/v1/v2/dcr-providers/{dcrproviderid}
POST
Verifydcrprovider — Verify DCR provider configuration
/v1/v2/dcr-providers/{dcrproviderid}/verify

MCP Tools

create-dcr-provider

Create DCR provider

list-dcr-providers

List DCR Providers

read-only idempotent
get-dcr-provider

Get a DCR provider

read-only idempotent
update-dcr-provider

Update DCR provider

idempotent
delete-dcr-provider

Delete DCR provider

idempotent
verify-dcr-provider-configuration

Verify DCR provider configuration

Capability Spec

konnect-platform-dcr-providers.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Konnect API - Go SDK — DCR Providers
  description: 'Konnect API - Go SDK — DCR Providers. 6 operations. Lead operation: Create DCR provider. Self-contained Naftiko
    capability covering one Kong business surface.'
  tags:
  - Kong
  - DCR Providers
  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-dcr-providers
    baseUri: https://global.api.konghq.com
    description: Konnect API - Go SDK — DCR Providers business capability. Self-contained, no shared references.
    resources:
    - name: v2-dcr-providers
      path: /v2/dcr-providers
      operations:
      - name: createdcrprovider
        method: POST
        description: Create DCR provider
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
      - name: listdcrproviders
        method: GET
        description: List DCR Providers
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: v2-dcr-providers-dcrProviderId
      path: /v2/dcr-providers/{dcrProviderId}
      operations:
      - name: getdcrprovider
        method: GET
        description: Get a DCR provider
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: updatedcrprovider
        method: PATCH
        description: Update DCR provider
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
      - name: deletedcrprovider
        method: DELETE
        description: Delete DCR provider
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: v2-dcr-providers-dcrProviderId-verify
      path: /v2/dcr-providers/{dcrProviderId}/verify
      operations:
      - name: verifydcrprovider
        method: POST
        description: Verify DCR provider configuration
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: bearer
      token: '{{env.KONG_API_KEY}}'
  exposes:
  - type: rest
    namespace: konnect-platform-dcr-providers-rest
    port: 8080
    description: REST adapter for Konnect API - Go SDK — DCR Providers. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/v2/dcr-providers
      name: v2-dcr-providers
      description: REST surface for v2-dcr-providers.
      operations:
      - method: POST
        name: createdcrprovider
        description: Create DCR provider
        call: konnect-platform-dcr-providers.createdcrprovider
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: GET
        name: listdcrproviders
        description: List DCR Providers
        call: konnect-platform-dcr-providers.listdcrproviders
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/v2/dcr-providers/{dcrproviderid}
      name: v2-dcr-providers-dcrproviderid
      description: REST surface for v2-dcr-providers-dcrProviderId.
      operations:
      - method: GET
        name: getdcrprovider
        description: Get a DCR provider
        call: konnect-platform-dcr-providers.getdcrprovider
        outputParameters:
        - type: object
          mapping: $.
      - method: PATCH
        name: updatedcrprovider
        description: Update DCR provider
        call: konnect-platform-dcr-providers.updatedcrprovider
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deletedcrprovider
        description: Delete DCR provider
        call: konnect-platform-dcr-providers.deletedcrprovider
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/v2/dcr-providers/{dcrproviderid}/verify
      name: v2-dcr-providers-dcrproviderid-verify
      description: REST surface for v2-dcr-providers-dcrProviderId-verify.
      operations:
      - method: POST
        name: verifydcrprovider
        description: Verify DCR provider configuration
        call: konnect-platform-dcr-providers.verifydcrprovider
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: konnect-platform-dcr-providers-mcp
    port: 9090
    transport: http
    description: MCP adapter for Konnect API - Go SDK — DCR Providers. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: create-dcr-provider
      description: Create DCR provider
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: konnect-platform-dcr-providers.createdcrprovider
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: list-dcr-providers
      description: List DCR Providers
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: konnect-platform-dcr-providers.listdcrproviders
      outputParameters:
      - type: object
        mapping: $.
    - name: get-dcr-provider
      description: Get a DCR provider
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: konnect-platform-dcr-providers.getdcrprovider
      outputParameters:
      - type: object
        mapping: $.
    - name: update-dcr-provider
      description: Update DCR provider
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: konnect-platform-dcr-providers.updatedcrprovider
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: delete-dcr-provider
      description: Delete DCR provider
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: konnect-platform-dcr-providers.deletedcrprovider
      outputParameters:
      - type: object
        mapping: $.
    - name: verify-dcr-provider-configuration
      description: Verify DCR provider configuration
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: konnect-platform-dcr-providers.verifydcrprovider
      outputParameters:
      - type: object
        mapping: $.