Honeycomb · Capability

Honeycomb Datasets API — Datasets

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

Honeycomb Datasets API — Datasets 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, DELETE, and PUT methods rooted at /v1/1/datasets.

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

Tagged areas include Honeycomb, Observability, and Datasets.

Run with Naftiko HoneycombObservabilityDatasets

What You Can Do

POST
Createdataset — Create a Dataset
/v1/1/datasets
GET
Listdatasets — List All Datasets
/v1/1/datasets
GET
Getdataset — Get a Dataset
/v1/1/datasets/{datasetSlug}
DELETE
Deletedataset — Delete a Dataset
/v1/1/datasets/{datasetSlug}
PUT
Updatedataset — Update a Dataset
/v1/1/datasets/{datasetSlug}

MCP Tools

honeycomb-datasets-datasets-createdataset

Create a Dataset

honeycomb-datasets-datasets-listdatasets

List All Datasets

read-only idempotent
honeycomb-datasets-datasets-getdataset

Get a Dataset

read-only idempotent
honeycomb-datasets-datasets-deletedataset

Delete a Dataset

idempotent
honeycomb-datasets-datasets-updatedataset

Update a Dataset

idempotent

Capability Spec

datasets-datasets.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: "Honeycomb Datasets API \u2014 Datasets"
  description: "Honeycomb Datasets API \u2014 Datasets. 5 operations. Lead operation: Create a Dataset. Self-contained Naftiko capability covering one Honeycomb business surface."
  tags:
  - Honeycomb
  - Observability
  - Datasets
  created: '2026-05-25'
  modified: '2026-05-25'
binds:
- namespace: env
  keys:
    HONEYCOMB_API_KEY: HONEYCOMB_API_KEY
capability:
  consumes:
  - type: http
    namespace: datasets-datasets
    baseUri: https://api.honeycomb.io
    description: "Honeycomb Datasets API \u2014 Datasets business capability. Self-contained, no shared references."
    resources:
    - name: 1-datasets
      path: /1/datasets
      operations:
      - 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: listdatasets
        method: GET
        description: List All Datasets
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: 1-datasets
      path: /1/datasets/{datasetSlug}
      operations:
      - name: getdataset
        method: GET
        description: Get a Dataset
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: deletedataset
        method: DELETE
        description: Delete 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: datasets-datasets-rest
    port: 8080
    description: "REST adapter for Honeycomb Datasets API \u2014 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: POST
        name: createdataset
        description: Create a Dataset
        call: datasets-datasets.createdataset
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: GET
        name: listdatasets
        description: List All Datasets
        call: datasets-datasets.listdatasets
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/1/datasets/{datasetSlug}
      name: 1-datasets
      description: REST surface for 1-datasets.
      operations:
      - method: GET
        name: getdataset
        description: Get a Dataset
        call: datasets-datasets.getdataset
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deletedataset
        description: Delete a Dataset
        call: datasets-datasets.deletedataset
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: updatedataset
        description: Update a Dataset
        call: datasets-datasets.updatedataset
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: datasets-datasets-mcp
    port: 9090
    transport: http
    description: "MCP adapter for Honeycomb Datasets API \u2014 Datasets. One tool per consumed operation, routed inline through this capability's consumes block."
    tools:
    - name: honeycomb-datasets-datasets-createdataset
      description: Create a Dataset
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: datasets-datasets.createdataset
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: honeycomb-datasets-datasets-listdatasets
      description: List All Datasets
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: datasets-datasets.listdatasets
      outputParameters:
      - type: object
        mapping: $.
    - name: honeycomb-datasets-datasets-getdataset
      description: Get a Dataset
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: datasets-datasets.getdataset
      outputParameters:
      - type: object
        mapping: $.
    - name: honeycomb-datasets-datasets-deletedataset
      description: Delete a Dataset
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: datasets-datasets.deletedataset
      outputParameters:
      - type: object
        mapping: $.
    - name: honeycomb-datasets-datasets-updatedataset
      description: Update a Dataset
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: datasets-datasets.updatedataset
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.