Honeycomb · Capability

Honeycomb Triggers API — Triggers

Honeycomb Triggers API — Triggers. 6 operations. Lead operation: List All Triggers. Self-contained Naftiko capability covering one Honeycomb business surface.

Honeycomb Triggers API — Triggers is a Naftiko capability published by Honeycomb, one of 22 capabilities the APIs.io network indexes for this provider. It bundles 6 operations across the GET, POST, PUT, and DELETE methods rooted at /v1/1.

The capability includes 3 read-only operations and 3 state-changing operations. Lead operation: List All Triggers. Can be deployed as a REST endpoint, MCP tool, or Agent Skill via Naftiko.

Tagged areas include Honeycomb, Observability, and Triggers.

Run with Naftiko HoneycombObservabilityTriggers

What You Can Do

GET
Listtriggers — List All Triggers
/v1/1/triggers/{datasetSlug}
POST
Createtrigger — Create a Trigger
/v1/1/triggers/{datasetSlug}
GET
Gettrigger — Get a Trigger
/v1/1/triggers/{datasetSlug}/{triggerId}
PUT
Updatetrigger — Update a Trigger
/v1/1/triggers/{datasetSlug}/{triggerId}
DELETE
Deletetrigger — Delete a Trigger
/v1/1/triggers/{datasetSlug}/{triggerId}
GET
Listtriggerswithrecipient — Get Triggers Associated with a Recipient
/v1/1/recipients/{recipientId}/triggers

MCP Tools

honeycomb-triggers-triggers-listtriggers

List All Triggers

read-only idempotent
honeycomb-triggers-triggers-createtrigger

Create a Trigger

honeycomb-triggers-triggers-gettrigger

Get a Trigger

read-only idempotent
honeycomb-triggers-triggers-updatetrigger

Update a Trigger

idempotent
honeycomb-triggers-triggers-deletetrigger

Delete a Trigger

idempotent
honeycomb-triggers-triggers-listtriggerswithrecipient

Get Triggers Associated with a Recipient

read-only idempotent

Capability Spec

triggers-triggers.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: "Honeycomb Triggers API \u2014 Triggers"
  description: "Honeycomb Triggers API \u2014 Triggers. 6 operations. Lead operation: List All Triggers. Self-contained Naftiko capability covering one Honeycomb business surface."
  tags:
  - Honeycomb
  - Observability
  - Triggers
  created: '2026-05-25'
  modified: '2026-05-25'
binds:
- namespace: env
  keys:
    HONEYCOMB_API_KEY: HONEYCOMB_API_KEY
capability:
  consumes:
  - type: http
    namespace: triggers-triggers
    baseUri: https://api.honeycomb.io
    description: "Honeycomb Triggers API \u2014 Triggers business capability. Self-contained, no shared references."
    resources:
    - name: 1-triggers
      path: /1/triggers/{datasetSlug}
      operations:
      - name: listtriggers
        method: GET
        description: List All Triggers
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createtrigger
        method: POST
        description: Create a Trigger
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: 1-triggers
      path: /1/triggers/{datasetSlug}/{triggerId}
      operations:
      - name: gettrigger
        method: GET
        description: Get a Trigger
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: updatetrigger
        method: PUT
        description: Update a Trigger
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: deletetrigger
        method: DELETE
        description: Delete a Trigger
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: 1-recipients-triggers
      path: /1/recipients/{recipientId}/triggers
      operations:
      - name: listtriggerswithrecipient
        method: GET
        description: Get Triggers Associated with a Recipient
        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: triggers-triggers-rest
    port: 8080
    description: "REST adapter for Honeycomb Triggers API \u2014 Triggers. One Spectral-compliant resource per consumed operation, prefixed with /v1."
    resources:
    - path: /v1/1/triggers/{datasetSlug}
      name: 1-triggers
      description: REST surface for 1-triggers.
      operations:
      - method: GET
        name: listtriggers
        description: List All Triggers
        call: triggers-triggers.listtriggers
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createtrigger
        description: Create a Trigger
        call: triggers-triggers.createtrigger
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/1/triggers/{datasetSlug}/{triggerId}
      name: 1-triggers
      description: REST surface for 1-triggers.
      operations:
      - method: GET
        name: gettrigger
        description: Get a Trigger
        call: triggers-triggers.gettrigger
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: updatetrigger
        description: Update a Trigger
        call: triggers-triggers.updatetrigger
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deletetrigger
        description: Delete a Trigger
        call: triggers-triggers.deletetrigger
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/1/recipients/{recipientId}/triggers
      name: 1-recipients-triggers
      description: REST surface for 1-recipients-triggers.
      operations:
      - method: GET
        name: listtriggerswithrecipient
        description: Get Triggers Associated with a Recipient
        call: triggers-triggers.listtriggerswithrecipient
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: triggers-triggers-mcp
    port: 9090
    transport: http
    description: "MCP adapter for Honeycomb Triggers API \u2014 Triggers. One tool per consumed operation, routed inline through this capability's consumes block."
    tools:
    - name: honeycomb-triggers-triggers-listtriggers
      description: List All Triggers
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: triggers-triggers.listtriggers
      outputParameters:
      - type: object
        mapping: $.
    - name: honeycomb-triggers-triggers-createtrigger
      description: Create a Trigger
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: triggers-triggers.createtrigger
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: honeycomb-triggers-triggers-gettrigger
      description: Get a Trigger
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: triggers-triggers.gettrigger
      outputParameters:
      - type: object
        mapping: $.
    - name: honeycomb-triggers-triggers-updatetrigger
      description: Update a Trigger
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: triggers-triggers.updatetrigger
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: honeycomb-triggers-triggers-deletetrigger
      description: Delete a Trigger
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: triggers-triggers.deletetrigger
      outputParameters:
      - type: object
        mapping: $.
    - name: honeycomb-triggers-triggers-listtriggerswithrecipient
      description: Get Triggers Associated with a Recipient
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: triggers-triggers.listtriggerswithrecipient
      outputParameters:
      - type: object
        mapping: $.