Honeycomb · Capability

Honeycomb Triggers API — Recipients

Honeycomb Triggers API — Recipients. 5 operations. Lead operation: Create a Recipient. Self-contained Naftiko capability covering one Honeycomb business surface.

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

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

Tagged areas include Honeycomb, Observability, and Recipients.

Run with Naftiko HoneycombObservabilityRecipients

What You Can Do

POST
Createrecipient — Create a Recipient
/v1/1/recipients
GET
Listrecipients — List all Recipients
/v1/1/recipients
GET
Getrecipient — Get a single Recipient
/v1/1/recipients/{recipientId}
PUT
Updaterecipient — Update a Recipient
/v1/1/recipients/{recipientId}
DELETE
Deleterecipient — Delete a Recipient
/v1/1/recipients/{recipientId}

MCP Tools

honeycomb-triggers-recipients-createrecipient

Create a Recipient

honeycomb-triggers-recipients-listrecipients

List all Recipients

read-only idempotent
honeycomb-triggers-recipients-getrecipient

Get a single Recipient

read-only idempotent
honeycomb-triggers-recipients-updaterecipient

Update a Recipient

idempotent
honeycomb-triggers-recipients-deleterecipient

Delete a Recipient

idempotent

Capability Spec

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