Check Point · Capability

Check Point Management API — Hosts

Check Point Management API — Hosts. 2 operations. Lead operation: Add a host object. Self-contained Naftiko capability covering one Checkpoint business surface.

Run with Naftiko CheckpointHosts

What You Can Do

POST
Addhost — Add a host object
/v1/add-host
POST
Showhosts — Show host objects
/v1/show-hosts

MCP Tools

add-host-object

Add a host object

show-host-objects

Show host objects

Capability Spec

management-hosts.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Check Point Management API — Hosts
  description: 'Check Point Management API — Hosts. 2 operations. Lead operation: Add a host object. Self-contained Naftiko
    capability covering one Checkpoint business surface.'
  tags:
  - Checkpoint
  - Hosts
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    CHECKPOINT_API_KEY: CHECKPOINT_API_KEY
capability:
  consumes:
  - type: http
    namespace: management-hosts
    baseUri: https://{server}/web_api
    description: Check Point Management API — Hosts business capability. Self-contained, no shared references.
    resources:
    - name: add-host
      path: /add-host
      operations:
      - name: addhost
        method: POST
        description: Add a host object
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: show-hosts
      path: /show-hosts
      operations:
      - name: showhosts
        method: POST
        description: Show host objects
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: apikey
      key: X-chkp-sid
      value: '{{env.CHECKPOINT_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: management-hosts-rest
    port: 8080
    description: REST adapter for Check Point Management API — Hosts. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/add-host
      name: add-host
      description: REST surface for add-host.
      operations:
      - method: POST
        name: addhost
        description: Add a host object
        call: management-hosts.addhost
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/show-hosts
      name: show-hosts
      description: REST surface for show-hosts.
      operations:
      - method: POST
        name: showhosts
        description: Show host objects
        call: management-hosts.showhosts
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: management-hosts-mcp
    port: 9090
    transport: http
    description: MCP adapter for Check Point Management API — Hosts. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: add-host-object
      description: Add a host object
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: management-hosts.addhost
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: show-host-objects
      description: Show host objects
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: management-hosts.showhosts
      outputParameters:
      - type: object
        mapping: $.