honeycomb · Capability

Honeycomb API — Auth

Honeycomb API — Auth. 2 operations. Lead operation: Authenticate API key. Self-contained Naftiko capability covering one Honeycomb business surface.

Run with Naftiko HoneycombAuth

What You Can Do

GET
Getauth — Authenticate API key
/v1/1/auth
GET
Listauthorizations — List authorizations
/v1/1/auth/permissions

MCP Tools

authenticate-api-key

Authenticate API key

read-only idempotent
list-authorizations

List authorizations

read-only idempotent

Capability Spec

honeycomb-auth.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Honeycomb API — Auth
  description: 'Honeycomb API — Auth. 2 operations. Lead operation: Authenticate API key. Self-contained Naftiko capability
    covering one Honeycomb business surface.'
  tags:
  - Honeycomb
  - Auth
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    HONEYCOMB_API_KEY: HONEYCOMB_API_KEY
capability:
  consumes:
  - type: http
    namespace: honeycomb-auth
    baseUri: https://api.honeycomb.io
    description: Honeycomb API — Auth business capability. Self-contained, no shared references.
    resources:
    - name: 1-auth
      path: /1/auth
      operations:
      - name: getauth
        method: GET
        description: Authenticate API key
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: 1-auth-permissions
      path: /1/auth/permissions
      operations:
      - name: listauthorizations
        method: GET
        description: List authorizations
        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-auth-rest
    port: 8080
    description: REST adapter for Honeycomb API — Auth. One Spectral-compliant resource per consumed operation, prefixed with
      /v1.
    resources:
    - path: /v1/1/auth
      name: 1-auth
      description: REST surface for 1-auth.
      operations:
      - method: GET
        name: getauth
        description: Authenticate API key
        call: honeycomb-auth.getauth
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/1/auth/permissions
      name: 1-auth-permissions
      description: REST surface for 1-auth-permissions.
      operations:
      - method: GET
        name: listauthorizations
        description: List authorizations
        call: honeycomb-auth.listauthorizations
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: honeycomb-auth-mcp
    port: 9090
    transport: http
    description: MCP adapter for Honeycomb API — Auth. One tool per consumed operation, routed inline through this capability's
      consumes block.
    tools:
    - name: authenticate-api-key
      description: Authenticate API key
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: honeycomb-auth.getauth
      outputParameters:
      - type: object
        mapping: $.
    - name: list-authorizations
      description: List authorizations
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: honeycomb-auth.listauthorizations
      outputParameters:
      - type: object
        mapping: $.