Kong · Capability

Konnect API - Go SDK — Config Store Secrets

Konnect API - Go SDK — Config Store Secrets. 5 operations. Lead operation: Create Config Store Secret. Self-contained Naftiko capability covering one Kong business surface.

Run with Naftiko KongConfig Store Secrets

What You Can Do

POST
Createconfigstoresecret — Create Config Store Secret
/v1/v2/control-planes/{controlplaneid}/config-stores/{configstoreid}/secrets
GET
Listconfigstoresecrets — List Config Store Secrets
/v1/v2/control-planes/{controlplaneid}/config-stores/{configstoreid}/secrets
GET
Getconfigstoresecret — Get a Config Store Secret
/v1/v2/control-planes/{controlplaneid}/config-stores/{configstoreid}/secrets/{key}
PUT
Updateconfigstoresecret — Update Config Store Secret
/v1/v2/control-planes/{controlplaneid}/config-stores/{configstoreid}/secrets/{key}
DELETE
Deleteconfigstoresecret — Delete Config Store Secret
/v1/v2/control-planes/{controlplaneid}/config-stores/{configstoreid}/secrets/{key}

MCP Tools

create-config-store-secret

Create Config Store Secret

list-config-store-secrets

List Config Store Secrets

read-only idempotent
get-config-store-secret

Get a Config Store Secret

read-only idempotent
update-config-store-secret

Update Config Store Secret

idempotent
delete-config-store-secret

Delete Config Store Secret

idempotent

Capability Spec

konnect-platform-config-store-secrets.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Konnect API - Go SDK — Config Store Secrets
  description: 'Konnect API - Go SDK — Config Store Secrets. 5 operations. Lead operation: Create Config Store Secret. Self-contained
    Naftiko capability covering one Kong business surface.'
  tags:
  - Kong
  - Config Store Secrets
  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-config-store-secrets
    baseUri: https://global.api.konghq.com
    description: Konnect API - Go SDK — Config Store Secrets business capability. Self-contained, no shared references.
    resources:
    - name: v2-control-planes-controlPlaneId-config-stores-configStoreId-secrets
      path: /v2/control-planes/{controlPlaneId}/config-stores/{configStoreId}/secrets
      operations:
      - name: createconfigstoresecret
        method: POST
        description: Create Config Store Secret
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
      - name: listconfigstoresecrets
        method: GET
        description: List Config Store Secrets
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: v2-control-planes-controlPlaneId-config-stores-configStoreId-secrets-key
      path: /v2/control-planes/{controlPlaneId}/config-stores/{configStoreId}/secrets/{key}
      operations:
      - name: getconfigstoresecret
        method: GET
        description: Get a Config Store Secret
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: updateconfigstoresecret
        method: PUT
        description: Update Config Store Secret
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
      - name: deleteconfigstoresecret
        method: DELETE
        description: Delete Config Store Secret
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: bearer
      token: '{{env.KONG_API_KEY}}'
  exposes:
  - type: rest
    namespace: konnect-platform-config-store-secrets-rest
    port: 8080
    description: REST adapter for Konnect API - Go SDK — Config Store Secrets. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/v2/control-planes/{controlplaneid}/config-stores/{configstoreid}/secrets
      name: v2-control-planes-controlplaneid-config-stores-configstoreid-secrets
      description: REST surface for v2-control-planes-controlPlaneId-config-stores-configStoreId-secrets.
      operations:
      - method: POST
        name: createconfigstoresecret
        description: Create Config Store Secret
        call: konnect-platform-config-store-secrets.createconfigstoresecret
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: GET
        name: listconfigstoresecrets
        description: List Config Store Secrets
        call: konnect-platform-config-store-secrets.listconfigstoresecrets
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/v2/control-planes/{controlplaneid}/config-stores/{configstoreid}/secrets/{key}
      name: v2-control-planes-controlplaneid-config-stores-configstoreid-secrets-key
      description: REST surface for v2-control-planes-controlPlaneId-config-stores-configStoreId-secrets-key.
      operations:
      - method: GET
        name: getconfigstoresecret
        description: Get a Config Store Secret
        call: konnect-platform-config-store-secrets.getconfigstoresecret
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: updateconfigstoresecret
        description: Update Config Store Secret
        call: konnect-platform-config-store-secrets.updateconfigstoresecret
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deleteconfigstoresecret
        description: Delete Config Store Secret
        call: konnect-platform-config-store-secrets.deleteconfigstoresecret
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: konnect-platform-config-store-secrets-mcp
    port: 9090
    transport: http
    description: MCP adapter for Konnect API - Go SDK — Config Store Secrets. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: create-config-store-secret
      description: Create Config Store Secret
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: konnect-platform-config-store-secrets.createconfigstoresecret
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: list-config-store-secrets
      description: List Config Store Secrets
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: konnect-platform-config-store-secrets.listconfigstoresecrets
      outputParameters:
      - type: object
        mapping: $.
    - name: get-config-store-secret
      description: Get a Config Store Secret
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: konnect-platform-config-store-secrets.getconfigstoresecret
      outputParameters:
      - type: object
        mapping: $.
    - name: update-config-store-secret
      description: Update Config Store Secret
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: konnect-platform-config-store-secrets.updateconfigstoresecret
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: delete-config-store-secret
      description: Delete Config Store Secret
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: konnect-platform-config-store-secrets.deleteconfigstoresecret
      outputParameters:
      - type: object
        mapping: $.