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
最后更新
2026年7月12日