Kong · Capability

Konnect API - Go SDK — Portal Integrations

Konnect API - Go SDK — Portal Integrations. 3 operations. Lead operation: Get Portal Integration Configurations. Self-contained Naftiko capability covering one Kong business surface.

Run with Naftiko KongPortal Integrations

What You Can Do

GET
Getportalintegrations — Get Portal Integration Configurations
/v1/v3/portals/{portalid}/integrations
PUT
Upsertportalintegrations — Replace Integration Configurations
/v1/v3/portals/{portalid}/integrations
PATCH
Updateportalintegrations — Update Integration Configurations
/v1/v3/portals/{portalid}/integrations

MCP Tools

get-portal-integration-configurations

Get Portal Integration Configurations

read-only idempotent
replace-integration-configurations

Replace Integration Configurations

idempotent
update-integration-configurations

Update Integration Configurations

idempotent

Capability Spec

konnect-platform-portal-integrations.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Konnect API - Go SDK — Portal Integrations
  description: 'Konnect API - Go SDK — Portal Integrations. 3 operations. Lead operation: Get Portal Integration Configurations.
    Self-contained Naftiko capability covering one Kong business surface.'
  tags:
  - Kong
  - Portal Integrations
  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-portal-integrations
    baseUri: https://global.api.konghq.com
    description: Konnect API - Go SDK — Portal Integrations business capability. Self-contained, no shared references.
    resources:
    - name: v3-portals-portalId-integrations
      path: /v3/portals/{portalId}/integrations
      operations:
      - name: getportalintegrations
        method: GET
        description: Get Portal Integration Configurations
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: upsertportalintegrations
        method: PUT
        description: Replace Integration Configurations
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
      - name: updateportalintegrations
        method: PATCH
        description: Update Integration Configurations
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
    authentication:
      type: bearer
      token: '{{env.KONG_API_KEY}}'
  exposes:
  - type: rest
    namespace: konnect-platform-portal-integrations-rest
    port: 8080
    description: REST adapter for Konnect API - Go SDK — Portal Integrations. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/v3/portals/{portalid}/integrations
      name: v3-portals-portalid-integrations
      description: REST surface for v3-portals-portalId-integrations.
      operations:
      - method: GET
        name: getportalintegrations
        description: Get Portal Integration Configurations
        call: konnect-platform-portal-integrations.getportalintegrations
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: upsertportalintegrations
        description: Replace Integration Configurations
        call: konnect-platform-portal-integrations.upsertportalintegrations
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: PATCH
        name: updateportalintegrations
        description: Update Integration Configurations
        call: konnect-platform-portal-integrations.updateportalintegrations
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: konnect-platform-portal-integrations-mcp
    port: 9090
    transport: http
    description: MCP adapter for Konnect API - Go SDK — Portal Integrations. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: get-portal-integration-configurations
      description: Get Portal Integration Configurations
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: konnect-platform-portal-integrations.getportalintegrations
      outputParameters:
      - type: object
        mapping: $.
    - name: replace-integration-configurations
      description: Replace Integration Configurations
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: konnect-platform-portal-integrations.upsertportalintegrations
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: update-integration-configurations
      description: Update Integration Configurations
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: konnect-platform-portal-integrations.updateportalintegrations
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.