Honeycomb · Capability

Honeycomb Markers API — Marker Settings

Honeycomb Markers API — Marker Settings. 4 operations. Lead operation: Create a Marker Setting. Self-contained Naftiko capability covering one Honeycomb business surface.

Honeycomb Markers API — Marker Settings is a Naftiko capability published by Honeycomb, one of 22 capabilities the APIs.io network indexes for this provider. It bundles 4 operations across the POST, GET, PUT, and DELETE methods rooted at /v1/1/marker_settings/{…}.

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

Tagged areas include Honeycomb, Observability, and Marker Settings.

Run with Naftiko HoneycombObservabilityMarker Settings

What You Can Do

POST
Createmarkersetting — Create a Marker Setting
/v1/1/marker_settings/{datasetSlug}
GET
Listmarkersettings — Get a Marker Setting
/v1/1/marker_settings/{datasetSlug}
PUT
Updatemarkersettings — Update a Marker Setting
/v1/1/marker_settings/{datasetSlug}/{markerSettingId}
DELETE
Deletemarkersettings — Delete a Marker Setting
/v1/1/marker_settings/{datasetSlug}/{markerSettingId}

MCP Tools

honeycomb-markers-settings-createmarkersetting

Create a Marker Setting

honeycomb-markers-settings-listmarkersettings

Get a Marker Setting

read-only idempotent
honeycomb-markers-settings-updatemarkersettings

Update a Marker Setting

idempotent
honeycomb-markers-settings-deletemarkersettings

Delete a Marker Setting

idempotent

Capability Spec

markers-settings.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: "Honeycomb Markers API \u2014 Marker Settings"
  description: "Honeycomb Markers API \u2014 Marker Settings. 4 operations. Lead operation: Create a Marker Setting. Self-contained Naftiko capability covering one Honeycomb business surface."
  tags:
  - Honeycomb
  - Observability
  - Marker Settings
  created: '2026-05-25'
  modified: '2026-05-25'
binds:
- namespace: env
  keys:
    HONEYCOMB_API_KEY: HONEYCOMB_API_KEY
capability:
  consumes:
  - type: http
    namespace: markers-settings
    baseUri: https://api.honeycomb.io
    description: "Honeycomb Markers API \u2014 Marker Settings business capability. Self-contained, no shared references."
    resources:
    - name: 1-marker-settings
      path: /1/marker_settings/{datasetSlug}
      operations:
      - name: createmarkersetting
        method: POST
        description: Create a Marker Setting
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: listmarkersettings
        method: GET
        description: Get a Marker Setting
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: 1-marker-settings
      path: /1/marker_settings/{datasetSlug}/{markerSettingId}
      operations:
      - name: updatemarkersettings
        method: PUT
        description: Update a Marker Setting
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: deletemarkersettings
        method: DELETE
        description: Delete a Marker Setting
        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: markers-settings-rest
    port: 8080
    description: "REST adapter for Honeycomb Markers API \u2014 Marker Settings. One Spectral-compliant resource per consumed operation, prefixed with /v1."
    resources:
    - path: /v1/1/marker_settings/{datasetSlug}
      name: 1-marker-settings
      description: REST surface for 1-marker-settings.
      operations:
      - method: POST
        name: createmarkersetting
        description: Create a Marker Setting
        call: markers-settings.createmarkersetting
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: GET
        name: listmarkersettings
        description: Get a Marker Setting
        call: markers-settings.listmarkersettings
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/1/marker_settings/{datasetSlug}/{markerSettingId}
      name: 1-marker-settings
      description: REST surface for 1-marker-settings.
      operations:
      - method: PUT
        name: updatemarkersettings
        description: Update a Marker Setting
        call: markers-settings.updatemarkersettings
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deletemarkersettings
        description: Delete a Marker Setting
        call: markers-settings.deletemarkersettings
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: markers-settings-mcp
    port: 9090
    transport: http
    description: "MCP adapter for Honeycomb Markers API \u2014 Marker Settings. One tool per consumed operation, routed inline through this capability's consumes block."
    tools:
    - name: honeycomb-markers-settings-createmarkersetting
      description: Create a Marker Setting
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: markers-settings.createmarkersetting
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: honeycomb-markers-settings-listmarkersettings
      description: Get a Marker Setting
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: markers-settings.listmarkersettings
      outputParameters:
      - type: object
        mapping: $.
    - name: honeycomb-markers-settings-updatemarkersettings
      description: Update a Marker Setting
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: markers-settings.updatemarkersettings
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: honeycomb-markers-settings-deletemarkersettings
      description: Delete a Marker Setting
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: markers-settings.deletemarkersettings
      outputParameters:
      - type: object
        mapping: $.