honeycomb · Capability

Honeycomb API — Burn Alerts

Honeycomb API — Burn Alerts. 5 operations. Lead operation: List all burn alerts. Self-contained Naftiko capability covering one Honeycomb business surface.

Run with Naftiko HoneycombBurn Alerts

What You Can Do

GET
Listburnalerts — List all burn alerts
/v1/1/burn-alerts/{datasetslug}
POST
Createburnalert — Create a burn alert
/v1/1/burn-alerts/{datasetslug}
GET
Getburnalert — Get a burn alert
/v1/1/burn-alerts/{datasetslug}/{burnalertid}
PUT
Updateburnalert — Update a burn alert
/v1/1/burn-alerts/{datasetslug}/{burnalertid}
DELETE
Deleteburnalert — Delete a burn alert
/v1/1/burn-alerts/{datasetslug}/{burnalertid}

MCP Tools

list-all-burn-alerts

List all burn alerts

read-only idempotent
create-burn-alert

Create a burn alert

get-burn-alert

Get a burn alert

read-only idempotent
update-burn-alert

Update a burn alert

idempotent
delete-burn-alert

Delete a burn alert

idempotent

Capability Spec

honeycomb-burn-alerts.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Honeycomb API — Burn Alerts
  description: 'Honeycomb API — Burn Alerts. 5 operations. Lead operation: List all burn alerts. Self-contained Naftiko capability
    covering one Honeycomb business surface.'
  tags:
  - Honeycomb
  - Burn Alerts
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    HONEYCOMB_API_KEY: HONEYCOMB_API_KEY
capability:
  consumes:
  - type: http
    namespace: honeycomb-burn-alerts
    baseUri: https://api.honeycomb.io
    description: Honeycomb API — Burn Alerts business capability. Self-contained, no shared references.
    resources:
    - name: 1-burn_alerts-datasetSlug
      path: /1/burn_alerts/{datasetSlug}
      operations:
      - name: listburnalerts
        method: GET
        description: List all burn alerts
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createburnalert
        method: POST
        description: Create a burn alert
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: 1-burn_alerts-datasetSlug-burnAlertId
      path: /1/burn_alerts/{datasetSlug}/{burnAlertId}
      operations:
      - name: getburnalert
        method: GET
        description: Get a burn alert
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: updateburnalert
        method: PUT
        description: Update a burn alert
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: deleteburnalert
        method: DELETE
        description: Delete a burn alert
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: apikey
      key: X-Honeycomb-Team
      value: '{{env.HONEYCOMB_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: honeycomb-burn-alerts-rest
    port: 8080
    description: REST adapter for Honeycomb API — Burn Alerts. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/1/burn-alerts/{datasetslug}
      name: 1-burn-alerts-datasetslug
      description: REST surface for 1-burn_alerts-datasetSlug.
      operations:
      - method: GET
        name: listburnalerts
        description: List all burn alerts
        call: honeycomb-burn-alerts.listburnalerts
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createburnalert
        description: Create a burn alert
        call: honeycomb-burn-alerts.createburnalert
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/1/burn-alerts/{datasetslug}/{burnalertid}
      name: 1-burn-alerts-datasetslug-burnalertid
      description: REST surface for 1-burn_alerts-datasetSlug-burnAlertId.
      operations:
      - method: GET
        name: getburnalert
        description: Get a burn alert
        call: honeycomb-burn-alerts.getburnalert
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: updateburnalert
        description: Update a burn alert
        call: honeycomb-burn-alerts.updateburnalert
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deleteburnalert
        description: Delete a burn alert
        call: honeycomb-burn-alerts.deleteburnalert
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: honeycomb-burn-alerts-mcp
    port: 9090
    transport: http
    description: MCP adapter for Honeycomb API — Burn Alerts. One tool per consumed operation, routed inline through this
      capability's consumes block.
    tools:
    - name: list-all-burn-alerts
      description: List all burn alerts
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: honeycomb-burn-alerts.listburnalerts
      outputParameters:
      - type: object
        mapping: $.
    - name: create-burn-alert
      description: Create a burn alert
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: honeycomb-burn-alerts.createburnalert
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: get-burn-alert
      description: Get a burn alert
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: honeycomb-burn-alerts.getburnalert
      outputParameters:
      - type: object
        mapping: $.
    - name: update-burn-alert
      description: Update a burn alert
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: honeycomb-burn-alerts.updateburnalert
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: delete-burn-alert
      description: Delete a burn alert
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: honeycomb-burn-alerts.deleteburnalert
      outputParameters:
      - type: object
        mapping: $.