Golioth · Capability

Golioth Management API — LightDB Stream

Golioth Management API — LightDB Stream. Query time-series data emitted by devices, scoped to a device or a whole project. Self-contained Naftiko capability.

Golioth Management API — LightDB Stream is a Naftiko capability published by Golioth, one of 9 capabilities the APIs.io network indexes for this provider. It bundles 2 operations.

The capability includes 2 read-only operations. Lead operation: Golioth Get Device Stream. Can be deployed as a REST endpoint, MCP tool, or Agent Skill via Naftiko.

Tagged areas include Golioth, LightDB Stream, Telemetry, and Time Series.

Run with Naftiko GoliothLightDB StreamTelemetryTime Series

MCP Tools

golioth-get-device-stream

Golioth Get Device Stream

read-only idempotent
golioth-get-project-stream

Golioth Get Project Stream

read-only idempotent

Capability Spec

management-stream.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Golioth Management API — LightDB Stream
  description: Golioth Management API — LightDB Stream. Query time-series data emitted by devices, scoped to a device or a whole project. Self-contained Naftiko capability.
  tags:
    - Golioth
    - LightDB Stream
    - Telemetry
    - Time Series
  created: '2026-05-25'
  modified: '2026-05-25'
binds:
  - namespace: env
    keys:
      GOLIOTH_API_KEY: GOLIOTH_API_KEY
capability:
  consumes:
    - type: http
      namespace: management-stream
      baseUri: https://api.golioth.io
      description: Golioth Management API — LightDB Stream business capability.
      resources:
        - name: v1-device-stream
          path: /v1/projects/{projectId}/devices/{deviceId}/stream
          operations:
            - name: getDeviceStream
              method: POST
              description: Golioth Get Device Stream
              outputRawFormat: json
              inputParameters:
                - name: projectId
                  in: path
                  type: string
                  required: true
                - name: deviceId
                  in: path
                  type: string
                  required: true
                - name: body
                  in: body
                  type: object
                  required: true
              outputParameters:
                - name: result
                  type: object
                  value: $.
        - name: v1-project-stream
          path: /v1/projects/{projectId}/stream
          operations:
            - name: getProjectStream
              method: POST
              description: Golioth Get Project Stream
              outputRawFormat: json
              inputParameters:
                - name: projectId
                  in: path
                  type: string
                  required: true
                - name: body
                  in: body
                  type: object
                  required: true
              outputParameters:
                - name: result
                  type: object
                  value: $.
      authentication:
        type: apikey
        key: x-api-key
        value: '{{env.GOLIOTH_API_KEY}}'
        placement: header
  exposes:
    - type: mcp
      namespace: management-stream-mcp
      port: 9090
      transport: http
      description: MCP adapter for Golioth LightDB Stream capability.
      tools:
        - name: golioth-get-device-stream
          description: Golioth Get Device Stream
          hints:
            readOnly: true
            destructive: false
            idempotent: true
          call: management-stream.getDeviceStream
          with:
            projectId: tools.projectId
            deviceId: tools.deviceId
            body: tools.body
          outputParameters:
            - type: object
              mapping: $.
        - name: golioth-get-project-stream
          description: Golioth Get Project Stream
          hints:
            readOnly: true
            destructive: false
            idempotent: true
          call: management-stream.getProjectStream
          with:
            projectId: tools.projectId
            body: tools.body
          outputParameters:
            - type: object
              mapping: $.