Check Point · Capability

Check Point Management API — Login

Check Point Management API — Login. 2 operations. Lead operation: Authenticate and obtain a session ID. Self-contained Naftiko capability covering one Checkpoint business surface.

Run with Naftiko CheckpointLogin

What You Can Do

POST
Login — Authenticate and obtain a session ID
/v1/login
POST
Logout — Logout the current session
/v1/logout

MCP Tools

authenticate-and-obtain-session-id

Authenticate and obtain a session ID

logout-current-session

Logout the current session

Capability Spec

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