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.
Connect
Add this configuration to .claude/mcp.json
Transport:
{
"mcpServers": {
"honeycomb": {
"command": "npx",
"args": [],
"env": {
"HONEYCOMB_API_KEY": "<YOUR_HONEYCOMB_API_KEY>"
}
}
}
}Tools (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"
}
}
}Resources
This server does not expose any resources.
Prompts
This server does not expose any prompts.
Server Information
- Author
- Honeycomb (@honeycombio)
- Stars
- 0
- Last Updated
- July 12, 2026