Raygun MCP Server

Raygun MCP Server

Access and interact with Raygun crash reporting data via Model Context Protocol for AI assistants.

19
Stars
13
Forks
19
Watchers
5
Issues
Raygun MCP Server provides a remote MCP endpoint that enables AI assistants to securely access, analyze, and manage crash reporting and real user monitoring data from Raygun through natural language conversations. It supports various AI tools and assistants, allowing users to investigate errors, monitor deployments, track user sessions, and gather performance insights seamlessly. Integration is streamlined with step-by-step guides for connecting through multiple popular AI environments.

Key Features

Remote MCP server hosting for Raygun data
Natural language interaction with error and performance data
Support for multiple AI assistants and IDE integrations
Secure access via Raygun Personal Access Token
Error investigation with stack trace retrieval
Deployment and release tracking features
Performance metrics and analytics
User session monitoring and identification
Team management and collaboration tools
Comprehensive documentation and quick start guides

Use Cases

Investigating and resolving application crashes through AI interfaces
Correlating errors with specific deployments to track problematic releases
Monitoring real user sessions and identifying affected customers
Analyzing application performance trends and metrics
Automating error triage and assignment using AI assistants
Facilitating team-based error resolution workflows
Receiving natural language summaries of application health
Integrating crash reporting data into software development tools and IDEs
Running time-series or distribution analysis on error or performance data
Securing access to sensitive data with user-specific authentication

README

πŸ”­ Raygun MCP Server

Access your crash reporting data in Raygun with AI assistants

MCP API Status Docs

A remote Model Context Protocol (MCP) server that connects AI assistants to your crash reporting and real user monitoring data in Raygun through natural language conversations.

πŸ“š Tool Reference β€’ πŸš€ Quick Start β€’ πŸ”‘ Get API Token


✨ Key Features

  • πŸ› Error Management - Investigate, resolve, and track application errors and crashes with full stack traces and context
  • πŸš€ Deployment Tracking - Monitor releases and correlate errors with deployments to identify problematic changes
  • ⚑ Performance Insights - Analyze page load times, user metrics, and performance trends over time
  • πŸ‘₯ User Monitoring - Track customer sessions, behavior patterns, and identify affected users
  • 🀝 Team Collaboration - Manage invitations and coordinate error resolution across your team
  • πŸ“Š Metrics & Analytics - Time-series analysis and distribution histograms for errors and performance

πŸ“‹ Requirements

πŸš€ Getting Started

The Raygun MCP server is hosted remotely at https://api.raygun.com/v3/mcp.

πŸ’‘ Tip: Choose your AI assistant below and follow the configuration instructions. Don't forget to replace YOUR_PAT_TOKEN with your actual Raygun Personal Access Token!

Guide: Amp MCP Documentation

bash
amp mcp add raygun --header "Authorization=Bearer YOUR_PAT_TOKEN" https://api.raygun.com/v3/mcp

Guide: Claude Code MCP Documentation

bash
claude mcp add --transport http raygun https://api.raygun.com/v3/mcp --header "Authorization: Bearer YOUR_PAT_TOKEN"

Guide: Cline MCP Documentation

Use https://api.raygun.com/v3/mcp and your PAT token

Guide: Codex MCP Documentation

toml
[mcp_servers.raygun]
command = "npx"
args = ["mcp-remote", "https://api.raygun.com/v3/mcp", "--header", "Authorization: Bearer YOUR_PAT_TOKEN"]

Go to Cursor Settings β†’ MCP β†’ New MCP Server

json
{
  "mcpServers": {
    "Raygun": {
      "url": "https://api.raygun.com/v3/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_PAT_TOKEN"
      }
    }
  }
}
bash
gemini mcp add --transport http raygun https://api.raygun.com/v3/mcp --header "Authorization: Bearer YOUR_PAT_TOKEN"

Guide: JetBrains AI Assistant MCP Documentation

json
{
  "mcpServers": {
    "Raygun": {
      "url": "https://api.raygun.com/v3/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_PAT_TOKEN"
      }
    }
  }
}

Guide: VS Code MCP Servers

json
{
  "servers": {
    "raygun": {
      "url": "https://api.raygun.com/v3/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_PAT_TOKEN"
      }
    }
  }
}

Guide: Zed MCP Documentation

json
{
  "context_servers": {
    "raygun": {
      "source": "custom",
      "command": "npx",
      "args": [
        "mcp-remote",
        "https://api.raygun.com/v3/mcp",
        "--header",
        "Authorization: Bearer YOUR_PAT_TOKEN"
      ],
      "env": {}
    }
  }
}

πŸ’¬ Your First Prompt

After configuration, try asking your AI assistant:

πŸ” "Show me the most recent error groups in my Raygun applications"
πŸš€ "What were the latest deployments and did they introduce any new errors?"
πŸ“Š "Analyze the performance trends for my top pages over the last 7 days"

πŸ› οΈ Tools

The Raygun MCP server provides the following categories of tools:

  • applications_list - List all applications in your Raygun account
  • applications_search - Search for applications by name
  • application_get_details - Get detailed application information
  • application_regenerate_api_key - Generate a new API key for an application
  • error_groups_list - List error groups within an application
  • error_group_investigate - Get complete details about a specific error group
  • error_group_update_status - Change error group status (resolve, ignore, activate)
  • error_group_add_comment - Add investigation notes to an error group
  • error_instances_browse - Browse individual error occurrences
  • error_instance_get_details - Get full stack trace and context for an error instance
  • deployments_list - List deployments for an application
  • deployment_create - Create a new deployment record
  • deployment_get_latest - Get the most recent deployment with error analysis
  • deployment_investigate - Get comprehensive deployment information
  • deployment_manage - Update or delete a deployment
  • customers_list - List customers for an application
  • customer_investigate - Get detailed customer information
  • sessions_list - List user sessions with environment and device data
  • pages_list - List monitored pages in an application
  • page_investigate - Get page details for metrics queries
  • metrics_website_performance_analyze - Track performance trends over time
  • metrics_performance_distribution_analyze - Understand performance variability
  • metrics_error_trends_analyze - Track error rates and patterns
  • invitations_manage - List and review team invitations
  • invitation_send - Send a new team invitation
  • invitation_revoke - Cancel a pending invitation

For detailed documentation on each tool, see the Tool Reference.

πŸ”‘ Configuration

Obtaining a Personal Access Token

To use the Raygun MCP server, you need a Raygun Personal Access Token (PAT):

  1. Navigate to Raygun Personal Access Tokens
  2. Click Create New Token
  3. Give your token a descriptive name (e.g., "MCP Server Access")
  4. Select the appropriate permissions for your use case
  5. Copy the generated token and use it in your MCP configuration

⚠️ Important: Replace YOUR_PAT_TOKEN in the configuration examples above with your actual token. Keep your token secure and never commit it to version control!

For more details, see the Raygun API documentation.


πŸ“– About

The Raygun MCP server enables AI coding assistants to access and analyze your crash reporting and real user monitoring data in Raygun, helping you investigate errors, track deployments, analyze performance, and manage your application monitoring workflowβ€”all through natural language conversations.

πŸ”— Resources


Built with ❀️ by Raygun

Raygun

Star History

Star History Chart

Repository Owner

MindscapeHQ
MindscapeHQ

Organization

Repository Details

Default Branch main
Size 26 KB
Contributors 1
MCP Verified Nov 12, 2025

Topics

error-reporting llm-agents mcp real-user-monitoring

Join Our Newsletter

Stay updated with the latest AI tools, news, and offers by subscribing to our weekly newsletter.

We respect your privacy. Unsubscribe at any time.

Related MCPs

Discover similar Model Context Protocol servers

  • Vectara MCP Server

    Vectara MCP Server

    Secure RAG server enabling seamless AI integration via Model Context Protocol.

    Vectara MCP Server implements the open Model Context Protocol to enable AI systems and agentic applications to connect securely with Vectara's Trusted RAG platform. It supports multiple transport modes, including secure HTTP, Server-Sent Events (SSE), and local STDIO for development. The server provides fast, reliable retrieval-augmented generation (RAG) operations with built-in authentication, rate limiting, and optional CORS configuration. Integration is compatible with Claude Desktop and any other MCP client.

    • ⭐ 25
    • MCP
    • vectara/vectara-mcp
  • Thales CDSP CRDP MCP Server

    Thales CDSP CRDP MCP Server

    MCP server enabling secure data protection and revelation with Thales CipherTrust CRDP

    Thales CDSP CRDP MCP Server implements the Model Context Protocol (MCP) to allow AI applications and LLMs to securely protect and reveal sensitive data via Thales CipherTrust RestFul Data Protection (CRDP) service. The server supports both stdio and HTTP transports, individual and bulk data operations, and robust versioning support. Features include health checks, metrics collection, and integration with protection policies and JWT-based authorization.

    • ⭐ 2
    • MCP
    • sanyambassi/thales-cdsp-crdp-mcp-server
  • AIM Guard MCP

    AIM Guard MCP

    AI-powered security and safety server for Model Context Protocol environments.

    AIM Guard MCP is a server implementing the Model Context Protocol (MCP), providing AI-powered security analysis and safety instruction tools tailored for AI agents. It offers features such as contextual security instructions, harmful content detection, API key scanning, and prompt injection detection, all designed to guard and protect interactions with various MCPs and external services. Built for fast integration, it connects with the AIM Intelligence API and is compatible with any MCP-compliant AI assistant.

    • ⭐ 13
    • MCP
    • AIM-Intelligence/AIM-MCP
  • VictoriaMetrics MCP Server

    VictoriaMetrics MCP Server

    Model Context Protocol server enabling advanced monitoring and observability for VictoriaMetrics.

    VictoriaMetrics MCP Server implements the Model Context Protocol (MCP) to provide seamless integration with VictoriaMetrics, allowing advanced monitoring, data exploration, and observability. It offers access to almost all read-only APIs, as well as embedded documentation for offline usage. The server facilitates comprehensive metric querying, cardinality analysis, alert and rule testing, and automation capabilities for engineers and tools.

    • ⭐ 87
    • MCP
    • VictoriaMetrics-Community/mcp-victoriametrics
  • Wazuh MCP Server

    Wazuh MCP Server

    Bridge Wazuh SIEM data to AI assistants with Model Context Protocol compatibility.

    Wazuh MCP Server is a Rust-based service that interfaces with Wazuh SIEM systems and transforms their complex data into Model Context Protocol (MCP) compatible formats. It enables AI assistants, including Claude Desktop Integration, to access security alerts, vulnerability assessments, agent health, and other SIEM insights through natural language queries. This solution facilitates compliance teams and security operations by providing actionable data for monitoring, forensics, compliance validation, and incident response.

    • ⭐ 137
    • MCP
    • gbrigandi/mcp-server-wazuh
  • sentry-mcp

    sentry-mcp

    Remote MCP middleware for developer workflow and debugging tools.

    sentry-mcp provides a remote Model Context Protocol server designed as middleware for Sentry's API, specifically optimized for human-in-the-loop coding agents and developer-oriented workflows. It enables integration with coding assistants like Cursor and Claude Code, offering both remote and stdio transports for varied environments, including self-hosted instances. The project also supports AI-powered search tools for querying events and issues, leveraging OpenAI API for natural language processing. Additionally, an Inspector tool is included for service testing and integration validation.

    • ⭐ 424
    • MCP
    • getsentry/sentry-mcp
  • Didn't find tool you were looking for?

    Be as detailed as possible for better results