Skip to content

Commit 041c8ac

Browse files
committed
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
1 parent 0217546 commit 041c8ac

1 file changed

Lines changed: 64 additions & 0 deletions

File tree

servers/com.honeycomb-mcp.json

Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
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.",
7+
"icon": "https://avatars.githubusercontent.com/u/15988027?v=4",
8+
"schema_version": "2.1",
9+
"categories": ["developer-tools"],
10+
"tags": ["honeycomb", "observability", "traces", "monitoring", "apm", "slo"],
11+
12+
"transport": {
13+
"type": "stdio",
14+
"command": "npx",
15+
"args": ["-y", "honeycomb-mcp"],
16+
"env": {
17+
"HONEYCOMB_API_KEY": "${input:HONEYCOMB_API_KEY}"
18+
},
19+
"metadata": {
20+
"inputs": [
21+
{
22+
"id": "HONEYCOMB_API_KEY",
23+
"label": "Honeycomb API Key",
24+
"description": "API key for the Honeycomb platform.",
25+
"type": "password",
26+
"required": true,
27+
"secret": true,
28+
"placeholder": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
29+
"obtain": {
30+
"url": "https://ui.honeycomb.io/account",
31+
"instructions": "1. Go to ui.honeycomb.io > Account\n2. Navigate to API Keys\n3. Create or copy an existing key",
32+
"button_label": "Get API Key"
33+
}
34+
}
35+
]
36+
}
37+
},
38+
39+
"auth": {
40+
"type": "api_key",
41+
"instructions": "Get your API key from https://ui.honeycomb.io/account"
42+
},
43+
44+
"contributor": {
45+
"name": "Honeycomb",
46+
"github": "honeycombio",
47+
"url": "https://www.honeycomb.io"
48+
},
49+
50+
"links": {
51+
"repository": "https://github.com/honeycombio/honeycomb-mcp",
52+
"homepage": "https://www.honeycomb.io",
53+
"documentation": "https://docs.honeycomb.io/integrations/mcp/"
54+
},
55+
56+
"platforms": ["all"],
57+
58+
"capabilities": {
59+
"tools": true,
60+
"resources": false,
61+
"prompts": false,
62+
"read_only_mode": true
63+
}
64+
}

0 commit comments

Comments
 (0)