Honeybadger MCP Server
The Honeybadger MCP Server integrates Honeybadger error tracking with Cursor IDE, enabling developers to fetch, analyze, and troubleshoot errors directly from their development environment.
• List recent faults - Retrieve recent errors with filtering by environment, resolved status, and project ID
• Get specific fault details - Fetch comprehensive information about individual errors using fault ID
• Analyze issues with fix suggestions - Receive detailed analysis and recommended fixes for specific errors
• Fetch error occurrences - Get recent notices for specific faults with contextual data and request parameters
• Filter and monitor - View errors by environment (production, staging) and track resolution status
• Configurable integration - Supports configuration through environment variables or Cursor's mcp_servers.json with API key, project ID, and base URL settings
Enables fetching and analyzing error data from Honeybadger error tracking service, allowing users to list recent faults, get detailed information on specific errors, retrieve error occurrences, and receive AI-generated analysis with fix suggestions.
Provides integration with Node.js applications, allowing for error tracking and debugging of Node.js-based projects through the Honeybadger error monitoring service.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Honeybadger MCP Serverlist recent unresolved errors from production"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Honeybadger MCP Server Setup Guide
This MCP server integrates Honeybadger error tracking with Cursor IDE, allowing you to fetch and analyze errors directly from your development environment.
Prerequisites
Node.js 18+ installed
Honeybadger account with API access
Cursor IDE with MCP support
Related MCP server: Jira Context MCP Server
Installation
1. Clone the MCP Server
git clone git@github.com:vishalzambre/honeybadger-mcp.git
cd honeybadger-mcp
npm install2. Build the Project
npm run build3. Using as an NPM Package (Recommended)
Global Installation:
npm install -g honeybadger-mcpThen configure it in Cursor:
{
"mcpServers": {
"honeybadger": {
"command": "honeybadger-mcp",
"env": {
"HONEYBADGER_API_KEY": "your_api_key_here",
"HONEYBADGER_PROJECT_ID": "your_project_id"
}
}
}
}Project-based Installation (Alternative):
If you prefer to manage the MCP server as a project dependency:
npm install honeybadger-mcpIn this case, the command in your Cursor mcp_servers.json would point to the local installation within your project's node_modules:
{
"mcpServers": {
"honeybadger": {
"command": "node",
"args": ["./node_modules/honeybadger-mcp/dist/index.js"],
"env": {
"HONEYBADGER_API_KEY": "your_api_key_here",
"HONEYBADGER_PROJECT_ID": "your_project_id"
}
}
}
}4. Configure Environment Variables
Create a .env file in your project root:
# Required: Your Honeybadger API key
HONEYBADGER_API_KEY=your_api_key_here
# Optional: Default project ID (can be overridden per request)
HONEYBADGER_PROJECT_ID=your_project_id
# Optional: Custom Honeybadger URL (defaults to https://app.honeybadger.io)
HONEYBADGER_BASE_URL=https://app.honeybadger.io4. Get Your Honeybadger Credentials
API Key:
Create a new Personal Auth Token
Copy the token for your
.envfile
Project ID:
Go to your project in Honeybadger
The project ID is in the URL:
https://app.honeybadger.io/projects/{PROJECT_ID}Or find it in project settings
Cursor Configuration
1. Configure MCP in Cursor
Add the MCP server to your Cursor configuration. Edit your ~/.cursor/mcp_servers.json (or equivalent):
{
"mcpServers": {
"honeybadger": {
"command": "node",
"args": ["/path/to/honeybadger-mcp/dist/index.js"],
"env": {
"HONEYBADGER_API_KEY": "your_api_key_here",
"HONEYBADGER_PROJECT_ID": "your_project_id"
}
}
}
}2. Alternative: Global Installation
This section will be updated or removed as it's now covered above. If you prefer the old way of cloning and installing globally from a local path, you can still do so, but using the published npm package is recommended for easier updates and management.
If installing from a local clone:
# Navigate to your cloned honeybadger-mcp directory
npm install -g . # Installs from the current directory
# Then configure in Cursor as before
# ... (Cursor configuration for local global install)Usage
Once configured, you can use these tools in Cursor:
1. List Recent Faults
List recent unresolved errors from Honeybadger in production environment2. Get Specific Fault Details
Get details for Honeybadger fault ID 123453. Analyze an Issue
Analyze Honeybadger issue 12345 and provide fix suggestions4. Get Error Occurrences
Get the latest 5 occurrences for Honeybadger fault 12345Available Tools
list_honeybadger_faults
Lists recent faults with optional filtering by environment and resolved status.
Parameters:
project_id(optional): Project IDlimit(optional): Number of faults (default: 20, max: 100)environment(optional): Filter by environmentresolved(optional): Filter by resolved status
get_honeybadger_fault
Fetches detailed information about a specific fault.
Parameters:
fault_id(required): The fault IDproject_id(optional): Project ID
get_honeybadger_notices
Fetches notices (error occurrences) for a specific fault.
Parameters:
fault_id(required): The fault IDproject_id(optional): Project IDlimit(optional): Number of notices (default: 10, max: 100)
analyze_honeybadger_issue
Provides comprehensive analysis with fix suggestions.
Parameters:
fault_id(required): The fault IDproject_id(optional): Project IDinclude_context(optional): Include request context (default: true)
Example Workflow
List recent errors: "Show me the latest unresolved errors from production"
Analyze specific error: "Analyze Honeybadger fault 12345 and suggest fixes"
Get error context: "Get the latest occurrences for fault 12345 with full context"
Review and fix: Use the analysis to understand and fix the issue in your code
Troubleshooting
Common Issues
Authentication Error: Verify your API key is correct and has proper permissions
Project Not Found: Check your project ID is correct
Connection Issues: Verify network access to Honeybadger API
Debug Mode
Run the server directly to see error messages:
node dist/index.jsLogs
Check Cursor logs for MCP-related issues:
macOS:
~/Library/Logs/Cursor/Windows:
%APPDATA%\Cursor\logs\Linux:
~/.config/Cursor/logs/
Security Notes
Store API keys securely and never commit them to version control
Use environment-specific API keys when possible
Consider using read-only API tokens for this integration
Regularly rotate your API keys
Contributing
To extend this MCP server:
Add new tools in the
setupToolHandlers()methodImplement corresponding handler methods
Update the tool list and documentation
Test thoroughly with your Honeybadger setup
Support
For issues with:
This MCP server: Check the code and configuration
Honeybadger API: Refer to Honeybadger API docs
Cursor MCP integration: Check Cursor documentation
Available Tools
4 toolsanalyze_honeybadger_issueB
Comprehensive analysis of a Honeybadger issue with fix suggestions
| Name | Required | Description | Default |
|---|---|---|---|
| fault_id | Yes | The ID of the fault to analyze | |
| project_id | No | Optional project ID (uses env var if not provided) | |
| include_context | No | Include request context and parameters in analysis |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. While 'analysis' and 'fix suggestions' imply a read-only operation, it doesn't specify whether this requires authentication, has rate limits, or what the output format looks like. For a tool with zero annotation coverage, this leaves significant behavioral gaps.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence that clearly states the tool's purpose without any wasted words. It's appropriately sized and front-loaded with the core functionality.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's moderate complexity (analysis with suggestions), no annotations, and no output schema, the description is minimally adequate. It states what the tool does but lacks details on output format, error handling, or integration with siblings. It meets basic requirements but has clear gaps for effective agent use.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already documents all three parameters thoroughly. The description adds no additional parameter semantics beyond what's in the schema (e.g., it doesn't explain what 'comprehensive analysis' entails or how parameters affect it). Baseline 3 is appropriate when the schema does the heavy lifting.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool performs 'comprehensive analysis' of a Honeybadger issue and provides 'fix suggestions', which is a specific verb+resource combination. However, it doesn't explicitly differentiate from sibling tools like 'get_honeybadger_fault' or 'get_honeybadger_notices', which might provide similar data without analysis or suggestions.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. There's no mention of when to choose this analysis tool over the sibling 'get' tools, nor any prerequisites or exclusions. The agent must infer usage from the description alone.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_honeybadger_faultB
Fetch a specific fault/error from Honeybadger by ID
| Name | Required | Description | Default |
|---|---|---|---|
| fault_id | Yes | The ID of the fault to fetch | |
| project_id | No | Optional project ID (uses env var if not provided) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. It states the action ('Fetch') but does not describe what 'fetch' entails—e.g., whether it's a read-only operation, requires authentication, has rate limits, or what the return format looks like. For a tool with zero annotation coverage, this leaves significant gaps in understanding its behavior.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence that front-loads the core purpose ('Fetch a specific fault/error from Honeybadger by ID'). There is no wasted language or redundancy, making it highly concise and well-structured for quick understanding.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the lack of annotations and output schema, the description is incomplete. It does not cover behavioral aspects like safety, authentication, or response format, which are crucial for a tool that fetches data. While the purpose is clear, the overall context for effective use by an AI agent is insufficient.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, with both parameters ('fault_id' and 'project_id') fully described in the schema. The description adds no additional meaning beyond what the schema provides, such as explaining parameter interactions or usage nuances. Baseline 3 is appropriate when the schema does the heavy lifting.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the specific action ('Fetch') and resource ('a specific fault/error from Honeybadger by ID'), distinguishing it from sibling tools like 'list_honeybadger_faults' (which presumably lists multiple faults) and 'get_honeybadger_notices' (which fetches notices rather than faults). It precisely communicates the tool's function without ambiguity.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage by specifying 'by ID,' suggesting it's for retrieving a single, known fault. However, it does not explicitly state when to use this tool versus alternatives like 'list_honeybadger_faults' or 'analyze_honeybadger_issue,' nor does it mention prerequisites or exclusions. The guidance is implied but lacks explicit comparison.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_honeybadger_noticesB
Fetch notices (occurrences) for a specific fault
| Name | Required | Description | Default |
|---|---|---|---|
| fault_id | Yes | The ID of the fault to fetch notices for | |
| project_id | No | Optional project ID (uses env var if not provided) | |
| limit | No | Number of notices to fetch (default: 10, max: 100) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. It states the action ('Fetch') but does not cover critical aspects like whether this is a read-only operation, potential rate limits, authentication needs, error handling, or what the return format looks like (e.g., pagination, structure). This leaves significant gaps for a tool with no annotation support.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, direct sentence that efficiently conveys the core purpose without any redundant or unnecessary information. It is front-loaded and appropriately sized for the tool's complexity.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the lack of annotations and no output schema, the description is incomplete. It does not address behavioral traits (e.g., safety, performance) or explain what the tool returns, which is critical for a tool with three parameters and no structured output documentation. The high schema coverage is insufficient to compensate for these gaps.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has 100% description coverage, clearly documenting all three parameters (fault_id, project_id, limit) with their purposes, optionality, and defaults. The description adds no additional parameter semantics beyond what the schema provides, so it meets the baseline for high schema coverage without compensating value.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the specific action ('Fetch') and resource ('notices (occurrences) for a specific fault'), distinguishing it from sibling tools like 'get_honeybadger_fault' (which fetches fault details) and 'list_honeybadger_faults' (which lists faults). It precisely defines the scope of the operation.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. It does not mention sibling tools like 'analyze_honeybadger_issue' or explain scenarios where fetching notices is appropriate versus other operations, leaving the agent without contextual usage cues.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_honeybadger_faultsC
List recent faults from Honeybadger
| Name | Required | Description | Default |
|---|---|---|---|
| project_id | No | Optional project ID (uses env var if not provided) | |
| limit | No | Number of faults to fetch (default: 20, max: 100) | |
| environment | No | Filter by environment (e.g., production, staging) | |
| resolved | No | Filter by resolved status |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. It states 'List recent faults' but doesn't explain what 'recent' means (e.g., time range), how results are ordered, pagination behavior, or error handling. This leaves significant gaps for a tool with 4 parameters and no output schema.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, clear sentence with zero waste. It's front-loaded with the core action and resource, making it highly efficient and easy to parse.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's complexity (4 parameters, no annotations, no output schema), the description is inadequate. It doesn't explain return values, error conditions, or behavioral traits like rate limits or authentication needs. For a list operation with filtering options, more context is needed to use it effectively.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema fully documents all 4 parameters. The description adds no additional parameter information beyond implying a list operation. This meets the baseline of 3, as the schema handles the heavy lifting, but the description doesn't enhance understanding of parameter interactions or defaults.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('List') and resource ('recent faults from Honeybadger'), making the purpose immediately understandable. However, it doesn't differentiate from sibling tools like 'get_honeybadger_fault' or 'get_honeybadger_notices', which likely retrieve specific items rather than lists.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. It doesn't mention sibling tools like 'analyze_honeybadger_issue' or 'get_honeybadger_fault', nor does it specify use cases or prerequisites beyond the basic action.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
TDQS
Each tool has a clearly distinct purpose with no overlap: analyze_honeybadger_issue provides analysis and fix suggestions, get_honeybadger_fault retrieves a specific fault by ID, get_honeybadger_notices fetches occurrences for a fault, and list_honeybadger_faults lists recent faults. The descriptions make it easy to distinguish between analyzing, fetching specific items, fetching related data, and listing collections.
All tool names follow a consistent verb_noun pattern with snake_case: analyze_honeybadger_issue, get_honeybadger_fault, get_honeybadger_notices, and list_honeybadger_faults. The naming is predictable and readable, using clear verbs like 'analyze', 'get', and 'list' paired with specific nouns.
With 4 tools, the count is reasonable for a Honeybadger server, covering core operations like listing, fetching, and analyzing faults. It's slightly on the minimal side but well-scoped for basic error monitoring tasks, though additional tools for actions like creating or updating issues might be expected in a more comprehensive set.
The tool set covers key read operations for Honeybadger: listing faults, fetching specific faults and their notices, and analyzing issues. However, it lacks write operations (e.g., creating, updating, or resolving faults) and broader management features, which are minor gaps that agents might need to work around for full lifecycle coverage.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Investigate errors, track deployments, analyze performance, and manage application monitoring
AI-powered intelligence for your development workflow via Indicate.
Persistent memory for Claude Code and Cursor. Stop re-explaining your project every session.
Give AI coding agents access to your Vynix visual feedback, bug reports, and AI diagnosis.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceA collection of Laravel helper tools for integration with Cursor IDE, providing features like log viewing, error searching, artisan command execution, and model information display directly within the editor.12MIT
- AlicenseNot gradedqualityDmaintenanceIntegrates Jira with Cursor IDE for AI-powered issue management, sprint tracking, library vulnerability analysis, and MySQL database queries through natural language.MIT
- AlicenseBqualityDmaintenanceIntegrates GlitchTip error monitoring with AI assistants to fetch, analyze, and debug production errors. It enables users to list issues, retrieve event details, and perform guided triage of application errors through natural language.28611MIT
- AlicenseNot gradedqualityDmaintenanceEnables AI agents to interact with the Honeybadger error monitoring service to list, filter, and analyze fault data. It provides tools for fetching error lists and retrieving detailed fault information from Honeybadger projects.1MIT
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/vishalzambre/honeybadger-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server