honeycomb · Capability

Honeycomb API — Datasets

Honeycomb API — Datasets. 4 operations. Lead operation: List all datasets. Self-contained Naftiko capability covering one Honeycomb business surface.

Run with Naftiko HoneycombDatasets

What You Can Do

GET
Listdatasets — List all datasets
/v1/1/datasets
POST
Createdataset — Create a dataset
/v1/1/datasets
GET
Getdataset — Get a dataset
/v1/1/datasets/{datasetslug}
PUT
Updatedataset — Update a dataset
/v1/1/datasets/{datasetslug}

MCP Tools

list-all-datasets

List all datasets

read-only idempotent
create-dataset

Create a dataset

get-dataset

Get a dataset

read-only idempotent
update-dataset

Update a dataset

idempotent

Capability Spec

honeycomb-datasets.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Honeycomb API — Datasets
  description: 'Honeycomb API — Datasets. 4 operations. Lead operation: List all datasets. Self-contained Naftiko capability
    covering one Honeycomb business surface.'
  tags:
  - Honeycomb
  - Datasets
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    HONEYCOMB_API_KEY: HONEYCOMB_API_KEY
capability:
  consumes:
  - type: http
    namespace: honeycomb-datasets
    baseUri: https://api.honeycomb.io
    description: Honeycomb API — Datasets business capability. Self-contained, no shared references.
    resources:
    - name: 1-datasets
      path: /1/datasets
      operations:
      - name: listdatasets
        method: GET
        description: List all datasets
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createdataset
        method: POST
        description: Create a dataset
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: 1-datasets-datasetSlug
      path: /1/datasets/{datasetSlug}
      operations:
      - name: getdataset
        method: GET
        description: Get a dataset
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: updatedataset
        method: PUT
        description: Update a dataset
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: apikey
      key: X-Honeycomb-Team
      value: '{{env.HONEYCOMB_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: honeycomb-datasets-rest
    port: 8080
    description: REST adapter for Honeycomb API — Datasets. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/1/datasets
      name: 1-datasets
      description: REST surface for 1-datasets.
      operations:
      - method: GET
        name: listdatasets
        description: List all datasets
        call: honeycomb-datasets.listdatasets
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createdataset
        description: Create a dataset
        call: honeycomb-datasets.createdataset
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/1/datasets/{datasetslug}
      name: 1-datasets-datasetslug
      description: REST surface for 1-datasets-datasetSlug.
      operations:
      - method: GET
        name: getdataset
        description: Get a dataset
        call: honeycomb-datasets.getdataset
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: updatedataset
        description: Update a dataset
        call: honeycomb-datasets.updatedataset
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: honeycomb-datasets-mcp
    port: 9090
    transport: http
    description: MCP adapter for Honeycomb API — Datasets. One tool per consumed operation, routed inline through this capability's
      consumes block.
    tools:
    - name: list-all-datasets
      description: List all datasets
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: honeycomb-datasets.listdatasets
      outputParameters:
      - type: object
        mapping: $.
    - name: create-dataset
      description: Create a dataset
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: honeycomb-datasets.createdataset
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: get-dataset
      description: Get a dataset
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: honeycomb-datasets.getdataset
      outputParameters:
      - type: object
        mapping: $.
    - name: update-dataset
      description: Update a dataset
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: honeycomb-datasets.updatedataset
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.