Kong · Capability

Konnect API - Go SDK — Certificates

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

Run with Naftiko KongCertificates

What You Can Do

GET
Listcertificate — List all Certificates
/v1/v2/control-planes/{controlplaneid}/core-entities/certificates
POST
Createcertificate — Create a new Certificate
/v1/v2/control-planes/{controlplaneid}/core-entities/certificates
DELETE
Deletecertificate — Delete a Certificate
/v1/v2/control-planes/{controlplaneid}/core-entities/certificates/{certificateid}
GET
Getcertificate — Get a Certificate
/v1/v2/control-planes/{controlplaneid}/core-entities/certificates/{certificateid}
PUT
Upsertcertificate — Upsert a Certificate
/v1/v2/control-planes/{controlplaneid}/core-entities/certificates/{certificateid}

MCP Tools

list-all-certificates

List all Certificates

read-only idempotent
create-new-certificate

Create a new Certificate

delete-certificate

Delete a Certificate

idempotent
get-certificate

Get a Certificate

read-only idempotent
upsert-certificate

Upsert a Certificate

idempotent

Capability Spec

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