Skip to content

Commit 3ef6f27

Browse files
authored
feat: add Honeycomb MCP server definition (#44)
* Add Honeycomb MCP server definition Official Honeycomb MCP server for observability data. Query traces, manage datasets, and analyze SLOs. Uses honeycomb-mcp npm package. https://claude.ai/code/session_013AxurW8hPAfnUNvik354Xx * fix: update server definition (input type 'password' -> 'text' for HONEYCOMB_API_KEY) * fix: update Honeycomb API key obtain URL * fix: convert Honeycomb to hosted MCP server (self-hosted deprecated, old npx pkg was unofficial)
1 parent f295fb5 commit 3ef6f27

1 file changed

Lines changed: 45 additions & 0 deletions

File tree

servers/com.honeycomb-mcp.json

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
{
2+
"$schema": "../schemas/server-definition.schema.json",
3+
"id": "com.honeycomb-mcp",
4+
"name": "Honeycomb",
5+
"alias": "honeycomb",
6+
"description": "Query and analyze observability data in Honeycomb. Run queries, manage datasets, analyze traces, and create SLOs via Honeycomb's hosted MCP server.",
7+
"icon": "https://avatars.githubusercontent.com/u/15988027?v=4",
8+
"schema_version": "2.1",
9+
"categories": ["monitoring", "developer-tools"],
10+
"tags": ["honeycomb", "observability", "traces", "monitoring", "apm", "slo"],
11+
12+
"transport": {
13+
"type": "http",
14+
"url": "https://mcp.honeycomb.io/mcp",
15+
"metadata": {
16+
"inputs": []
17+
}
18+
},
19+
20+
"auth": {
21+
"type": "oauth",
22+
"instructions": "Connect via OAuth when prompted by your MCP client. You will be redirected to Honeycomb to authorize access. Requires Honeycomb Intelligence enrollment."
23+
},
24+
25+
"contributor": {
26+
"name": "Honeycomb",
27+
"github": "honeycombio",
28+
"url": "https://www.honeycomb.io"
29+
},
30+
31+
"links": {
32+
"repository": "https://github.com/honeycombio/honeycomb-mcp",
33+
"homepage": "https://www.honeycomb.io",
34+
"documentation": "https://docs.honeycomb.io/integrations/mcp/"
35+
},
36+
37+
"platforms": ["all"],
38+
39+
"capabilities": {
40+
"tools": true,
41+
"resources": false,
42+
"prompts": false,
43+
"read_only_mode": true
44+
}
45+
}

0 commit comments

Comments
 (0)