honeycomb · Capability

Honeycomb Datasets API — Columns

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

Run with Naftiko HoneycombColumns

What You Can Do

GET
Listcolumns — List all columns
/v1/1/columns/{datasetslug}
POST
Createcolumn — Create a column
/v1/1/columns/{datasetslug}
GET
Getcolumn — Get a column
/v1/1/columns/{datasetslug}/{columnid}
PUT
Updatecolumn — Update a column
/v1/1/columns/{datasetslug}/{columnid}
DELETE
Deletecolumn — Delete a column
/v1/1/columns/{datasetslug}/{columnid}

MCP Tools

list-all-columns

List all columns

read-only idempotent
create-column

Create a column

get-column

Get a column

read-only idempotent
update-column

Update a column

idempotent
delete-column

Delete a column

idempotent

Capability Spec

datasets-columns.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Honeycomb Datasets API — Columns
  description: 'Honeycomb Datasets API — Columns. 5 operations. Lead operation: List all columns. Self-contained Naftiko capability
    covering one Honeycomb business surface.'
  tags:
  - Honeycomb
  - Columns
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    HONEYCOMB_API_KEY: HONEYCOMB_API_KEY
capability:
  consumes:
  - type: http
    namespace: datasets-columns
    baseUri: https://api.honeycomb.io
    description: Honeycomb Datasets API — Columns business capability. Self-contained, no shared references.
    resources:
    - name: 1-columns-datasetSlug
      path: /1/columns/{datasetSlug}
      operations:
      - name: listcolumns
        method: GET
        description: List all columns
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createcolumn
        method: POST
        description: Create a column
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: 1-columns-datasetSlug-columnId
      path: /1/columns/{datasetSlug}/{columnId}
      operations:
      - name: getcolumn
        method: GET
        description: Get a column
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: updatecolumn
        method: PUT
        description: Update a column
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: deletecolumn
        method: DELETE
        description: Delete a column
        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: datasets-columns-rest
    port: 8080
    description: REST adapter for Honeycomb Datasets API — Columns. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/1/columns/{datasetslug}
      name: 1-columns-datasetslug
      description: REST surface for 1-columns-datasetSlug.
      operations:
      - method: GET
        name: listcolumns
        description: List all columns
        call: datasets-columns.listcolumns
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createcolumn
        description: Create a column
        call: datasets-columns.createcolumn
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/1/columns/{datasetslug}/{columnid}
      name: 1-columns-datasetslug-columnid
      description: REST surface for 1-columns-datasetSlug-columnId.
      operations:
      - method: GET
        name: getcolumn
        description: Get a column
        call: datasets-columns.getcolumn
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: updatecolumn
        description: Update a column
        call: datasets-columns.updatecolumn
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deletecolumn
        description: Delete a column
        call: datasets-columns.deletecolumn
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: datasets-columns-mcp
    port: 9090
    transport: http
    description: MCP adapter for Honeycomb Datasets API — Columns. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: list-all-columns
      description: List all columns
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: datasets-columns.listcolumns
      outputParameters:
      - type: object
        mapping: $.
    - name: create-column
      description: Create a column
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: datasets-columns.createcolumn
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: get-column
      description: Get a column
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: datasets-columns.getcolumn
      outputParameters:
      - type: object
        mapping: $.
    - name: update-column
      description: Update a column
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: datasets-columns.updatecolumn
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: delete-column
      description: Delete a column
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: datasets-columns.deletecolumn
      outputParameters:
      - type: object
        mapping: $.