honeycomb · Capability

Honeycomb API — Recipients

Honeycomb API — Recipients. 5 operations. Lead operation: List all recipients. Self-contained Naftiko capability covering one Honeycomb business surface.

Run with Naftiko HoneycombRecipients

What You Can Do

GET
Listrecipients — List all recipients
/v1/1/recipients
POST
Createrecipient — Create a recipient
/v1/1/recipients
GET
Getrecipient — Get a 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

list-all-recipients

List all recipients

read-only idempotent
create-recipient

Create a recipient

get-recipient

Get a recipient

read-only idempotent
update-recipient

Update a recipient

idempotent
delete-recipient

Delete a recipient

idempotent

Capability Spec

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