Check Point · Capability

Check Point Identity Awareness API — Identity

Check Point Identity Awareness API — Identity. 2 operations. Lead operation: Associate a user identity with an IP. Self-contained Naftiko capability covering one Checkpoint business surface.

Run with Naftiko CheckpointIdentity

What You Can Do

POST
Addidentity — Associate a user identity with an IP
/v1/idasdk/add-identity
POST
Deleteidentity — Remove a user identity association
/v1/idasdk/delete-identity

MCP Tools

associate-user-identity-ip

Associate a user identity with an IP

remove-user-identity-association

Remove a user identity association

Capability Spec

identity-awareness-identity.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Check Point Identity Awareness API — Identity
  description: 'Check Point Identity Awareness API — Identity. 2 operations. Lead operation: Associate a user identity with
    an IP. Self-contained Naftiko capability covering one Checkpoint business surface.'
  tags:
  - Checkpoint
  - Identity
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    CHECKPOINT_API_KEY: CHECKPOINT_API_KEY
capability:
  consumes:
  - type: http
    namespace: identity-awareness-identity
    baseUri: https://{gateway}/_IA_MU_Agent
    description: Check Point Identity Awareness API — Identity business capability. Self-contained, no shared references.
    resources:
    - name: idasdk-add-identity
      path: /idasdk/add-identity
      operations:
      - name: addidentity
        method: POST
        description: Associate a user identity with an IP
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: idasdk-delete-identity
      path: /idasdk/delete-identity
      operations:
      - name: deleteidentity
        method: POST
        description: Remove a user identity association
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: apikey
      key: X-chkp-shared-secret
      value: '{{env.CHECKPOINT_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: identity-awareness-identity-rest
    port: 8080
    description: REST adapter for Check Point Identity Awareness API — Identity. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/idasdk/add-identity
      name: idasdk-add-identity
      description: REST surface for idasdk-add-identity.
      operations:
      - method: POST
        name: addidentity
        description: Associate a user identity with an IP
        call: identity-awareness-identity.addidentity
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/idasdk/delete-identity
      name: idasdk-delete-identity
      description: REST surface for idasdk-delete-identity.
      operations:
      - method: POST
        name: deleteidentity
        description: Remove a user identity association
        call: identity-awareness-identity.deleteidentity
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: identity-awareness-identity-mcp
    port: 9090
    transport: http
    description: MCP adapter for Check Point Identity Awareness API — Identity. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: associate-user-identity-ip
      description: Associate a user identity with an IP
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: identity-awareness-identity.addidentity
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: remove-user-identity-association
      description: Remove a user identity association
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: identity-awareness-identity.deleteidentity
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.