Available skills
Installing the Honeycomb plugin gives your AI assistant eight skills for observability workflows:- query-patterns: Build effective Honeycomb queries with patterns for column selection, filtering, and aggregation.
- production-investigation: Debug latency spikes, error rates, and other production anomalies with step-by-step reasoning.
- slos-and-triggers: Define and manage SLOs and alert triggers in Honeycomb.
- otel-instrumentation: Instrument applications with OpenTelemetry, including span creation, attribute naming, and context propagation.
- otel-migration: How to migrate proprietary or legacy instrumentation to OpenTelemetry.
- beeline-migration: Guidlines for migrating from Honeycomb Beelines to OpenTelemetry SDKs.
- observability-fundamentals: Core concepts around distributed tracing, wide events, and production-grade observability.
- create-honeycomb-board: Create Honeycomb boards to capture investigations and share insights.
Available agents
Two autonomous agents are included for more complex tasks:- honeycomb-investigator: Autonomously investigates production issues by querying Honeycomb data, identifying patterns, and summarizing findings.
- instrumentation-advisor: Analyzes your codebase to find instrumentation gaps and suggest improvements based on OpenTelemetry best practices.
Additional capabilities
- Column validation hooks: Prevent queries with invalid or mistyped column names before they are sent to Honeycomb.
- Schema caching: Reduce repeated lookups by caching dataset column schemas locally during a session.
- Honeycomb MCP integration: Query traces, check SLOs and triggers, run BubbleUp analysis, and create boards.
Install the plugin
The following tools support direct plugin installation, which sets up all skills, agents, hooks, and MCP configuration.Claude Code
/honeycomb-setup to connect the Honeycomb MCP server and complete authentication.
Cursor
Add as a remote rule in the Cursor settings:- Open Settings > Rules > Project Rules.
- Select Add Rule > Remote Rule.
- Enter the URL:
https://github.com/honeycombio/agent-skill
Augment (Auggie CLI)
GitHub Copilot CLI
Other tools
Many AI coding tools support skills and MCP servers through their own configuration. To use Honeycomb with these tools, you’ll generally need to:- Add skills: Copy the skill files from the agent-skill repository into the skills directory your tool expects.
- Configure the MCP server: Point your tool at the Honeycomb MCP endpoint —
https://mcp.honeycomb.io/mcp(orhttps://mcp.eu1.honeycomb.io/mcpfor EU).
| Tool | Skills Docs | MCP Docs |
|---|---|---|
| VS Code with GitHub Copilot | Agent Skills, Agent Plugins | MCP Servers |
| OpenAI Codex CLI | Skills | Configuration |
| Cline | Rules | MCP Servers |
| Windsurf | — | MCP Configuration |
| Amazon Q Developer | — | MCP Servers |
Don’t see your tool listed? Open an issue on GitHub to request support.
Connecting to Honeycomb
OAuth (recommended)
OAuth is the recommended authentication method. It uses a browser-based flow and does not require you to manage API keys. When you first invoke a Honeycomb MCP tool, your agent will open a browser window to complete the authorization flow. Pick your Honeycomb environment and grant the required permissions. Once authorized, your agent can access Honeycomb data for the rest of the session.API Key (headless environments)
For autonomous or unattended agents that cannot complete an interactive OAuth flow, use an API key.- Generate a Management API key in Honeycomb under Account > Team Settings > API Keys.
- Grant the Model Context Protocol and Environments scopes with Read permissions (and Write if you want the
create_boardtool). - Format the key as
KEY_ID:SECRET_KEYand pass it as a Bearer token in theAuthorizationheader.
EU region
If your Honeycomb team is on the EU instance, usehttps://mcp.eu1.honeycomb.io/mcp in place of the US endpoint in all configurations above.
Next steps
- Getting Started with Honeycomb Using MCP
- Connect your AI agent to Honeycomb MCP
- Browse the honeycomb/agent-skill repo, open issues, or contribute new skills and improvements.