Check Point · Capability

Check Point Management API — Sessions

Check Point Management API — Sessions. 2 operations. Lead operation: Install policy package on selected gateways. Self-contained Naftiko capability covering one Checkpoint business surface.

Run with Naftiko CheckpointSessions

What You Can Do

POST
Installpolicy — Install policy package on selected gateways
/v1/install-policy
POST
Publish — Publish session changes
/v1/publish

MCP Tools

install-policy-package-selected-gateways

Install policy package on selected gateways

publish-session-changes

Publish session changes

Capability Spec

management-sessions.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Check Point Management API — Sessions
  description: 'Check Point Management API — Sessions. 2 operations. Lead operation: Install policy package on selected gateways.
    Self-contained Naftiko capability covering one Checkpoint business surface.'
  tags:
  - Checkpoint
  - Sessions
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    CHECKPOINT_API_KEY: CHECKPOINT_API_KEY
capability:
  consumes:
  - type: http
    namespace: management-sessions
    baseUri: https://{server}/web_api
    description: Check Point Management API — Sessions business capability. Self-contained, no shared references.
    resources:
    - name: install-policy
      path: /install-policy
      operations:
      - name: installpolicy
        method: POST
        description: Install policy package on selected gateways
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: publish
      path: /publish
      operations:
      - name: publish
        method: POST
        description: Publish session changes
        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-sessions-rest
    port: 8080
    description: REST adapter for Check Point Management API — Sessions. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/install-policy
      name: install-policy
      description: REST surface for install-policy.
      operations:
      - method: POST
        name: installpolicy
        description: Install policy package on selected gateways
        call: management-sessions.installpolicy
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/publish
      name: publish
      description: REST surface for publish.
      operations:
      - method: POST
        name: publish
        description: Publish session changes
        call: management-sessions.publish
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: management-sessions-mcp
    port: 9090
    transport: http
    description: MCP adapter for Check Point Management API — Sessions. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: install-policy-package-selected-gateways
      description: Install policy package on selected gateways
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: management-sessions.installpolicy
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: publish-session-changes
      description: Publish session changes
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: management-sessions.publish
      outputParameters:
      - type: object
        mapping: $.