Stellar Cyber · Capability

Stellar Cyber Open XDR API — Sensors

Stellar Cyber Open XDR API — Sensors. 3 operations. Lead operation: List Sensors. Self-contained Naftiko capability covering one Stellar Cyber business surface.

Run with Naftiko Stellar CyberSensors

What You Can Do

GET
Listsensors — List Sensors
/v1/sensors
GET
Getsensor — Get Sensor
/v1/sensors/{sensorid}
DELETE
Deletesensor — Delete Sensor
/v1/sensors/{sensorid}

MCP Tools

list-sensors

List Sensors

read-only idempotent
get-sensor

Get Sensor

read-only idempotent
delete-sensor

Delete Sensor

idempotent

Capability Spec

stellar-cyber-sensors.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Stellar Cyber Open XDR API — Sensors
  description: 'Stellar Cyber Open XDR API — Sensors. 3 operations. Lead operation: List Sensors. Self-contained Naftiko capability
    covering one Stellar Cyber business surface.'
  tags:
  - Stellar Cyber
  - Sensors
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    STELLAR_CYBER_API_KEY: STELLAR_CYBER_API_KEY
capability:
  consumes:
  - type: http
    namespace: stellar-cyber-sensors
    baseUri: https://{platformHostname}/connect/api/v1
    description: Stellar Cyber Open XDR API — Sensors business capability. Self-contained, no shared references.
    resources:
    - name: sensors
      path: /sensors
      operations:
      - name: listsensors
        method: GET
        description: List Sensors
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: sensors-sensorId
      path: /sensors/{sensorId}
      operations:
      - name: getsensor
        method: GET
        description: Get Sensor
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: deletesensor
        method: DELETE
        description: Delete Sensor
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: bearer
      token: '{{env.STELLAR_CYBER_API_KEY}}'
  exposes:
  - type: rest
    namespace: stellar-cyber-sensors-rest
    port: 8080
    description: REST adapter for Stellar Cyber Open XDR API — Sensors. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/sensors
      name: sensors
      description: REST surface for sensors.
      operations:
      - method: GET
        name: listsensors
        description: List Sensors
        call: stellar-cyber-sensors.listsensors
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/sensors/{sensorid}
      name: sensors-sensorid
      description: REST surface for sensors-sensorId.
      operations:
      - method: GET
        name: getsensor
        description: Get Sensor
        call: stellar-cyber-sensors.getsensor
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deletesensor
        description: Delete Sensor
        call: stellar-cyber-sensors.deletesensor
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: stellar-cyber-sensors-mcp
    port: 9090
    transport: http
    description: MCP adapter for Stellar Cyber Open XDR API — Sensors. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: list-sensors
      description: List Sensors
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: stellar-cyber-sensors.listsensors
      outputParameters:
      - type: object
        mapping: $.
    - name: get-sensor
      description: Get Sensor
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: stellar-cyber-sensors.getsensor
      outputParameters:
      - type: object
        mapping: $.
    - name: delete-sensor
      description: Delete Sensor
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: stellar-cyber-sensors.deletesensor
      outputParameters:
      - type: object
        mapping: $.