Honeycomb · Capability

Honeycomb Auth API — Auth

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

Honeycomb Auth API — Auth is a Naftiko capability published by Honeycomb, one of 22 capabilities the APIs.io network indexes for this provider. It bundles 2 operations across the GET method.

The capability includes 2 read-only operations. Lead operation: List Authorizations. Can be deployed as a REST endpoint, MCP tool, or Agent Skill via Naftiko.

Tagged areas include Honeycomb, Observability, and Auth.

Run with Naftiko HoneycombObservabilityAuth

What You Can Do

GET
Getauth — List Authorizations
/v1/1/auth
GET
Getv2auth — List Authorizations V2
/v1/2/auth

MCP Tools

honeycomb-auth-auth-getauth

List Authorizations

read-only idempotent
honeycomb-auth-auth-getv2auth

List Authorizations V2

read-only idempotent

Capability Spec

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