Model Context Protocol server for Honeycomb
Model Context Protocol server for Honeycomb. Exposed over MCP by the hny mcp mcp server, that capability becomes something an assistant can invoke while it works, not something you go and do afterwards.
A Model Context Protocol server for interacting with Honeycomb observability data. This server enables LLMs like Claude to directly analyze and query your Honeycomb datasets across multiple environments.
Everything the assistant can do here goes through one of these:
list_datasets — List all datasets in an environmentget_columns — Get column information for a datasetrun_query — Run analytics queries with rich optionsanalyze_columns — Analyzes specific columns in a dataset by running statistical queries and returning computed metricslist_slos — List all SLOs for a datasetget_slo — Get detailed SLO informationlist_triggers — List all triggers for a datasetget_trigger — Get detailed trigger informationget_trace_link — Generate a deep link to a specific trace in the Honeycomb UIget_instrumentation_help — Provides OpenTelemetry instrumentation guidanceResources — Access Honeycomb datasets using URIs in the format: honeycomb://{environment}/{dataset}Tools — The Tools tool exposed by this serverBeing a remote server, there is no local install. You register the endpoint with your client, authorise it once, and the tools appear.
You will need 3 environment variables: HONEYCOMB_API_KEY, HONEYCOMB_ENV_PROD_API_KEY, HONEYCOMB_ENV_STAGING_API_KEY. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.
Plenty of developer tooling servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. Hny MCP's toolset — list_datasets, get_columns, run_query and 9 more — is a fair guide to whether it matches your workflow. It is maintained by austinlparker; worth a glance at recent repository activity before you build anything load-bearing on it.
SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.
| Tool | What it does |
|---|---|
| list_datasets | List all datasets in an environment |
| get_columns | Get column information for a dataset |
| run_query | Run analytics queries with rich options |
| analyze_columns | Analyzes specific columns in a dataset by running statistical queries and returning computed metrics. |
| list_slos | List all SLOs for a dataset |
| get_slo | Get detailed SLO information |
| list_triggers | List all triggers for a dataset |
| get_trigger | Get detailed trigger information |
| get_trace_link | Generate a deep link to a specific trace in the Honeycomb UI |
| get_instrumentation_help | Provides OpenTelemetry instrumentation guidance |
| Resources | Access Honeycomb datasets using URIs in the format: honeycomb://{environment}/{dataset} |
| Tools | The Tools tool exposed by this server. |
For multiple environments:
```json
{
"mcpServers": {
"honeycomb": {
"command": "node",
"args": [
"/fully/qualified/path/to/honeycomb-mcp/build/index.mjs"
],
"env": {
"HONEYCOMB_ENV_PROD_API_KEY": "your_prod_api_key",
"HONEYCOMB_ENV_STAGING_API_KEY": "your_staging_api_key"
}
}
}
}Configuration as documented by the project. Restart the client after saving.
| Variable | Description | Required |
|---|---|---|
| HONEYCOMB_API_KEY | Credential the server authenticates with. | Yes |
| HONEYCOMB_ENV_PROD_API_KEY | Credential the server authenticates with. | Yes |
| HONEYCOMB_ENV_STAGING_API_KEY | Credential the server authenticates with. | Yes |
Kill hallucinated APIs — version-accurate, up-to-date library documentation injected straight into context.
Microsoft's official browser automation server — drive a real browser through the accessibility tree, no screenshots needed.
GitHub's official server — repos, issues, pull requests, Actions and code security, straight from your assistant.
Issue tracking at the speed of conversation — Linear's official hosted server with OAuth and zero install.
Local repository surgery — status, diffs, commits, branches and history for any repo on disk.
Timezone sanity for AI — current time anywhere and correct conversions, without the model doing date math.