Kion · Capability

Kion Cloud Operations API — Compliance Checks

Kion Cloud Operations API — Compliance Checks. 5 operations. Lead operation: Kion List compliance checks. Self-contained Naftiko capability covering one Kion business surface.

Run with Naftiko KionCompliance Checks

What You Can Do

GET
Listcompliancechecks — Kion List compliance checks
/v1/compliance-check
POST
Createcompliancecheck — Kion Create a compliance check
/v1/compliance-check
GET
Getcompliancecheck — Kion Get a compliance check
/v1/compliance-check/{id}
PATCH
Updatecompliancecheck — Kion Update a compliance check
/v1/compliance-check/{id}
DELETE
Deletecompliancecheck — Kion Delete a compliance check
/v1/compliance-check/{id}

MCP Tools

kion-list-compliance-checks

Kion List compliance checks

read-only idempotent
kion-create-compliance-check

Kion Create a compliance check

kion-get-compliance-check

Kion Get a compliance check

read-only idempotent
kion-update-compliance-check

Kion Update a compliance check

idempotent
kion-delete-compliance-check

Kion Delete a compliance check

idempotent

Capability Spec

cloud-operations-compliance-checks.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Kion Cloud Operations API — Compliance Checks
  description: 'Kion Cloud Operations API — Compliance Checks. 5 operations. Lead operation: Kion List compliance checks.
    Self-contained Naftiko capability covering one Kion business surface.'
  tags:
  - Kion
  - Compliance Checks
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    KION_API_KEY: KION_API_KEY
capability:
  consumes:
  - type: http
    namespace: cloud-operations-compliance-checks
    baseUri: https://{kion-instance}/api/v3
    description: Kion Cloud Operations API — Compliance Checks business capability. Self-contained, no shared references.
    resources:
    - name: compliance-check
      path: /compliance-check
      operations:
      - name: listcompliancechecks
        method: GET
        description: Kion List compliance checks
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createcompliancecheck
        method: POST
        description: Kion Create a compliance check
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: compliance-check-id
      path: /compliance-check/{id}
      operations:
      - name: getcompliancecheck
        method: GET
        description: Kion Get a compliance check
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: updatecompliancecheck
        method: PATCH
        description: Kion Update a compliance check
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: deletecompliancecheck
        method: DELETE
        description: Kion Delete a compliance check
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: bearer
      token: '{{env.KION_API_KEY}}'
  exposes:
  - type: rest
    namespace: cloud-operations-compliance-checks-rest
    port: 8080
    description: REST adapter for Kion Cloud Operations API — Compliance Checks. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/compliance-check
      name: compliance-check
      description: REST surface for compliance-check.
      operations:
      - method: GET
        name: listcompliancechecks
        description: Kion List compliance checks
        call: cloud-operations-compliance-checks.listcompliancechecks
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createcompliancecheck
        description: Kion Create a compliance check
        call: cloud-operations-compliance-checks.createcompliancecheck
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/compliance-check/{id}
      name: compliance-check-id
      description: REST surface for compliance-check-id.
      operations:
      - method: GET
        name: getcompliancecheck
        description: Kion Get a compliance check
        call: cloud-operations-compliance-checks.getcompliancecheck
        outputParameters:
        - type: object
          mapping: $.
      - method: PATCH
        name: updatecompliancecheck
        description: Kion Update a compliance check
        call: cloud-operations-compliance-checks.updatecompliancecheck
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deletecompliancecheck
        description: Kion Delete a compliance check
        call: cloud-operations-compliance-checks.deletecompliancecheck
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: cloud-operations-compliance-checks-mcp
    port: 9090
    transport: http
    description: MCP adapter for Kion Cloud Operations API — Compliance Checks. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: kion-list-compliance-checks
      description: Kion List compliance checks
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: cloud-operations-compliance-checks.listcompliancechecks
      outputParameters:
      - type: object
        mapping: $.
    - name: kion-create-compliance-check
      description: Kion Create a compliance check
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: cloud-operations-compliance-checks.createcompliancecheck
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: kion-get-compliance-check
      description: Kion Get a compliance check
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: cloud-operations-compliance-checks.getcompliancecheck
      outputParameters:
      - type: object
        mapping: $.
    - name: kion-update-compliance-check
      description: Kion Update a compliance check
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: cloud-operations-compliance-checks.updatecompliancecheck
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: kion-delete-compliance-check
      description: Kion Delete a compliance check
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: cloud-operations-compliance-checks.deletecompliancecheck
      outputParameters:
      - type: object
        mapping: $.