Honeycomb MCP Server

DevOpsstdiohttp-streaming
Репозиторий

Honeycomb's MCP server that lets AI assistants query and analyze observability data, including events, traces, alerts (triggers), and boards. Agents can run queries against datasets, inspect columns and schemas, and cross-reference production behavior with the codebase to investigate incidents. Connects to Honeycomb via API key or OAuth.

Подключение

Добавьте эту конфигурацию в .claude/mcp.json

Подключение:
{
  "mcpServers": {
    "honeycomb": {
      "command": "npx",
      "args": [],
      "env": {
        "HONEYCOMB_API_KEY": "<YOUR_HONEYCOMB_API_KEY>"
      }
    }
  }
}

Инструменты (3)

list_datasets

List the datasets available in the Honeycomb environment.

{
  "type": "object",
  "properties": {}
}

run_query

Run a Honeycomb query against a dataset to analyze events and traces.

{
  "type": "object",
  "required": [
    "dataset",
    "query"
  ],
  "properties": {
    "query": {
      "type": "object",
      "description": "Honeycomb query specification (calculations, filters, breakdowns)"
    },
    "dataset": {
      "type": "string",
      "description": "Dataset to query"
    }
  }
}

list_columns

List the columns and their types for a given dataset.

{
  "type": "object",
  "required": [
    "dataset"
  ],
  "properties": {
    "dataset": {
      "type": "string",
      "description": "Dataset to inspect"
    }
  }
}

Ресурсы

Этот сервер не предоставляет ресурсы.

Промпты

Этот сервер не предоставляет промпты.

Сведения о сервере

Автор
Honeycomb (@honeycombio)
Репозиторий
https://github.com/honeycombio/honeycomb-mcp
Звёзды
0
Последнее обновление
12 июля 2026 г.