Palo Alto Networks · Capability

Palo Alto Networks IoT Security API — Devices

Palo Alto Networks IoT Security API — Devices. 2 operations. Lead operation: Palo Alto Networks Get Device Details. Self-contained Naftiko capability covering one Palo Alto Networks business surface.

Run with Naftiko Palo Alto NetworksDevices

What You Can Do

GET
Getdevicedetail — Palo Alto Networks Get Device Details
/v1/device/detail
GET
Listdevices — Palo Alto Networks List Discovered Devices
/v1/device/list

MCP Tools

palo-alto-networks-get-device

Palo Alto Networks Get Device Details

read-only idempotent
palo-alto-networks-list-discovered

Palo Alto Networks List Discovered Devices

read-only idempotent

Capability Spec

palo-alto-iot-security-devices.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Palo Alto Networks IoT Security API — Devices
  description: 'Palo Alto Networks IoT Security API — Devices. 2 operations. Lead operation: Palo Alto Networks Get Device
    Details. Self-contained Naftiko capability covering one Palo Alto Networks business surface.'
  tags:
  - Palo Alto Networks
  - Devices
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    PALO_ALTO_NETWORKS_API_KEY: PALO_ALTO_NETWORKS_API_KEY
capability:
  consumes:
  - type: http
    namespace: palo-alto-iot-security-devices
    baseUri: https://{customer}.iot.paloaltonetworks.com/pub/v4.0
    description: Palo Alto Networks IoT Security API — Devices business capability. Self-contained, no shared references.
    resources:
    - name: device-detail
      path: /device/detail
      operations:
      - name: getdevicedetail
        method: GET
        description: Palo Alto Networks Get Device Details
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: customerid
          in: query
          type: string
          description: Customer tenant identifier.
          required: true
        - name: deviceid
          in: query
          type: string
          description: Unique device identifier.
          required: true
    - name: device-list
      path: /device/list
      operations:
      - name: listdevices
        method: GET
        description: Palo Alto Networks List Discovered Devices
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: customerid
          in: query
          type: string
          description: Customer tenant identifier.
          required: true
        - name: offset
          in: query
          type: integer
          description: Pagination offset for results.
        - name: pagelength
          in: query
          type: integer
          description: Number of devices to return per page.
        - name: detail
          in: query
          type: string
          description: Level of detail to include in the response.
        - name: filter_monitored
          in: query
          type: string
          description: Filter for monitored or unmonitored devices.
        - name: stime
          in: query
          type: string
          description: Start time filter as a Unix epoch timestamp in seconds. Returns devices active since this time.
        - name: etime
          in: query
          type: string
          description: End time filter as a Unix epoch timestamp in seconds. Returns devices active before this time.
    authentication:
      type: apikey
      key: X-Key-Id
      value: '{{env.PALO_ALTO_NETWORKS_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: palo-alto-iot-security-devices-rest
    port: 8080
    description: REST adapter for Palo Alto Networks IoT Security API — Devices. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/device/detail
      name: device-detail
      description: REST surface for device-detail.
      operations:
      - method: GET
        name: getdevicedetail
        description: Palo Alto Networks Get Device Details
        call: palo-alto-iot-security-devices.getdevicedetail
        with:
          customerid: rest.customerid
          deviceid: rest.deviceid
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/device/list
      name: device-list
      description: REST surface for device-list.
      operations:
      - method: GET
        name: listdevices
        description: Palo Alto Networks List Discovered Devices
        call: palo-alto-iot-security-devices.listdevices
        with:
          customerid: rest.customerid
          offset: rest.offset
          pagelength: rest.pagelength
          detail: rest.detail
          filter_monitored: rest.filter_monitored
          stime: rest.stime
          etime: rest.etime
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: palo-alto-iot-security-devices-mcp
    port: 9090
    transport: http
    description: MCP adapter for Palo Alto Networks IoT Security API — Devices. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: palo-alto-networks-get-device
      description: Palo Alto Networks Get Device Details
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: palo-alto-iot-security-devices.getdevicedetail
      with:
        customerid: tools.customerid
        deviceid: tools.deviceid
      outputParameters:
      - type: object
        mapping: $.
    - name: palo-alto-networks-list-discovered
      description: Palo Alto Networks List Discovered Devices
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: palo-alto-iot-security-devices.listdevices
      with:
        customerid: tools.customerid
        offset: tools.offset
        pagelength: tools.pagelength
        detail: tools.detail
        filter_monitored: tools.filter_monitored
        stime: tools.stime
        etime: tools.etime
      outputParameters:
      - type: object
        mapping: $.