Fire in da houseTop Tip:Paying $100+ per month for Perplexity, MidJourney, Runway, ChatGPT and other tools is crazy - get all your AI tools in one site starting at $15 per month with Galaxy AI Fire in da houseCheck it out free

mcp-server-raygun

MCP.Pizza Chef: MindscapeHQ

The mcp-server-raygun is an MCP server that provides structured, real-time access to Raygun's API V3 endpoints. It enables seamless interaction with Raygun's Crash Reporting and Real User Monitoring services through the Model Context Protocol. This server exposes tools for managing applications, error groups, and deployments, allowing developers to list applications, retrieve application details, manage error group statuses (resolve, activate, ignore), and regenerate API keys. By integrating Raygun's comprehensive monitoring capabilities into MCP workflows, it empowers AI models to assist in error tracking, application monitoring, and deployment management efficiently and securely.

Use This MCP server To

List all Raygun applications under an account Retrieve detailed application information by ID or API key Regenerate API keys for Raygun applications List and manage error groups for applications Resolve, activate, or ignore error groups programmatically Access deployment information related to applications

README

Raygun MCP Server

MCP Server for Raygun's API V3 endpoints for interacting with your Crash Reporting and Real User Monitoring applications. This server provides comprehensive access to Raygun's API features through the Model Context Protocol.

Features

Tools

Applications
  • list_applications - List all applications under your account
  • get_application - Get application details by identifier
  • get_application_by_api_key - Get application details by API key
  • regenerate_application_api_key - Generate a new API key for an application
Error Management
  • list_error_groups - List error groups for an application
  • get_error_group - Get detailed information about an error group
  • resolve_error_group - Set error group status to resolved
  • activate_error_group - Set error group status to active
  • ignore_error_group - Set error group status to ignored
  • permanently_ignore_error_group - Set error group status to permanently ignored
Deployment Management
  • list_deployments - List deployments for an application
  • get_deployment - Get deployment details by identifier
  • delete_deployment - Remove a deployment
  • update_deployment - Update deployment information
  • reprocess_deployment_commits - Reprocess deployment commit data
User & Session Management
  • list_customers - List customers for an application
  • list_sessions - List user sessions for an application
  • get_session - Get detailed session information
Performance Monitoring
  • list_pages - List monitored pages for an application
  • get_page_metrics_time_series - Get time-series performance metrics
  • get_page_metrics_histogram - Get histogram of performance metrics
  • get_error_metrics_time_series - Get time-series error metrics
Source Maps
  • list_source_maps - List source maps for an application
  • get_source_map - Get source map details
  • update_source_map - Update source map information
  • delete_source_map - Remove a source map
  • upload_source_map - Upload a new source map
  • delete_all_source_maps - Remove all source maps
Team Management
  • list_invitations - List pending team invitations
  • send_invitation - Send a new team invitation
  • get_invitation - Get invitation details
  • revoke_invitation - Revoke a pending invitation

Configuration

The server requires the following environment variables:

  • RAYGUN_PAT_TOKEN (required): Your Raygun PAT token
  • SOURCEMAP_ALLOWED_DIRS (optional): Comma-separated list of directories allowed for source map operations

Usage with Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "raygun": {
      "command": "npx",
      "args": ["-y", "@raygun.io/mcp-server-raygun"],
      "env": {
        "RAYGUN_PAT_TOKEN": "your-pat-token-here"
      }
    }
  }
}

Development

Install dependencies:

npm install

Build the server:

npm run build

For development with auto-rebuild:

npm run watch

Installation

To use with Claude Desktop, add the server config:

On MacOS: ~/Library/Application Support/Claude/claude_desktop_config.json On Windows: %APPDATA%/Claude/claude_desktop_config.json

{
  "mcpServers": {
    "raygun": {
      "command": "/path/to/server-raygun/build/index.js",
      "env": {
        "RAYGUN_PAT_TOKEN": "your-pat-token-ken"
      }
    }
  }
}

Debugging

Since MCP servers communicate over stdio, debugging can be challenging. We recommend using the MCP Inspector, which is available as a package script:

npm run inspector

The Inspector will provide a URL to access debugging tools in your browser.

mcp-server-raygun FAQ

How do I authenticate the mcp-server-raygun with my Raygun account?
You authenticate by providing your Raygun API key, which the server uses to access your account data securely.
Can I manage error group statuses using this MCP server?
Yes, you can resolve, activate, ignore, or permanently ignore error groups via the provided tools.
Does the server support regenerating API keys for applications?
Yes, it includes a tool to regenerate application API keys securely.
How does this MCP server handle real user monitoring data?
It accesses Raygun's Real User Monitoring endpoints, allowing models to retrieve and interact with monitoring data in real time.
Is the mcp-server-raygun compatible with multiple LLM providers?
Yes, it is designed to work with any MCP client and supports models like OpenAI, Claude, and Gemini.
What kind of deployment management features are available?
The server provides access to deployment-related data, enabling tracking and management of application deployments.
How secure is the data handled by this MCP server?
The server uses scoped API keys and secure communication protocols to ensure data privacy and integrity.