Check Point · Capability

Check Point CloudGuard API — Cloud Accounts

Check Point CloudGuard API — Cloud Accounts. 2 operations. Lead operation: List onboarded cloud accounts. Self-contained Naftiko capability covering one Checkpoint business surface.

Run with Naftiko CheckpointCloud Accounts

What You Can Do

GET
Listcloudaccounts — List onboarded cloud accounts
/v1/cloudaccounts
POST
Createcloudaccount — Onboard a cloud account
/v1/cloudaccounts

MCP Tools

list-onboarded-cloud-accounts

List onboarded cloud accounts

read-only idempotent
onboard-cloud-account

Onboard a cloud account

Capability Spec

cloudguard-cloud-accounts.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Check Point CloudGuard API — Cloud Accounts
  description: 'Check Point CloudGuard API — Cloud Accounts. 2 operations. Lead operation: List onboarded cloud accounts.
    Self-contained Naftiko capability covering one Checkpoint business surface.'
  tags:
  - Checkpoint
  - Cloud Accounts
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    CHECKPOINT_API_KEY: CHECKPOINT_API_KEY
capability:
  consumes:
  - type: http
    namespace: cloudguard-cloud-accounts
    baseUri: https://api.dome9.com/v2
    description: Check Point CloudGuard API — Cloud Accounts business capability. Self-contained, no shared references.
    resources:
    - name: CloudAccounts
      path: /CloudAccounts
      operations:
      - name: listcloudaccounts
        method: GET
        description: List onboarded cloud accounts
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createcloudaccount
        method: POST
        description: Onboard a cloud account
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: basic
      username: '{{env.CHECKPOINT_USER}}'
      password: '{{env.CHECKPOINT_PASS}}'
  exposes:
  - type: rest
    namespace: cloudguard-cloud-accounts-rest
    port: 8080
    description: REST adapter for Check Point CloudGuard API — Cloud Accounts. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/cloudaccounts
      name: cloudaccounts
      description: REST surface for CloudAccounts.
      operations:
      - method: GET
        name: listcloudaccounts
        description: List onboarded cloud accounts
        call: cloudguard-cloud-accounts.listcloudaccounts
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createcloudaccount
        description: Onboard a cloud account
        call: cloudguard-cloud-accounts.createcloudaccount
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: cloudguard-cloud-accounts-mcp
    port: 9090
    transport: http
    description: MCP adapter for Check Point CloudGuard API — Cloud Accounts. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: list-onboarded-cloud-accounts
      description: List onboarded cloud accounts
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: cloudguard-cloud-accounts.listcloudaccounts
      outputParameters:
      - type: object
        mapping: $.
    - name: onboard-cloud-account
      description: Onboard a cloud account
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: cloudguard-cloud-accounts.createcloudaccount
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.