Skip to main content
ClaudeWave
MindscapeHQ avatar
MindscapeHQ

mcp-server-raygun

Ver en GitHub

Give your AI coding assistants access to Raygun so they can investigate, explain, and help resolve errors for you.

MCP ServersRegistry oficial22 estrellas12 forksActualizado today
ClaudeWave Trust Score
75/100
Trusted
Passed
  • Actively maintained (<30d)
  • Clear description
  • Topics declared
  • Mature repo (>1y old)
  • Documented (README)
Flags
  • !No standard license detected
Last scanned: 9/3/2026
Install in Claude Code / Claude Desktop
Method: Manual
Claude Code CLI
git clone https://github.com/MindscapeHQ/mcp-server-raygun
claude_desktop_config.json (Claude Desktop)
{
  "mcpServers": {
    "raygun": {
      "command": "node",
      "args": ["/path/to/mcp-server-raygun/dist/index.js"]
    }
  }
}
1. Run the command above in your terminal (Claude Code), or paste the JSON config into claude_desktop_config.json (Claude Desktop).
2. Replace any <placeholder> values with your API keys or paths.
3. Restart Claude. The MCP server and its tools appear automatically.
💡 Clone https://github.com/MindscapeHQ/mcp-server-raygun and follow its README for install instructions.
Casos de uso

Resumen de MCP Servers

<div align="center">

# 🔭 Raygun MCP Server

### Investigate errors and performance in Raygun with AI assistants

[![MCP](https://img.shields.io/badge/MCP-Remote%20Server-blue?logo=anthropic&logoColor=white)](https://modelcontextprotocol.io/)
[![API](https://img.shields.io/badge/Raygun%20API-v3-FF6A13?logo=raygun&logoColor=white)](https://raygun.com/documentation/product-guides/raygun-api/)
[![Status](https://img.shields.io/badge/Status-Production-success?logo=checkmarx&logoColor=white)](https://api.raygun.com/v3/mcp)
[![Docs](https://img.shields.io/badge/Docs-Available-informational?logo=gitbook&logoColor=white)](https://raygun.com/documentation/product-guides/raygun-mcp-server/)

A remote Model Context Protocol (MCP) server that connects AI assistants to Raygun Crash Reporting, Real User Monitoring, and Application Performance Monitoring.

**[📘 Setup Guide](https://raygun.com/documentation/product-guides/raygun-mcp-server/)** • **[📚 Tool Reference](https://github.com/MindscapeHQ/mcp-server-raygun/blob/main/TOOLS.md)** • **[🚀 Quick Start](#getting-started)**

</div>

---

## ✨ 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
- 🔬 **APM Investigation** - Find backend hotspots, recurring performance issues, and slow traces
- 👥 **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

- A [Raygun account](https://raygun.com/) with an active subscription
- An MCP client with OAuth support, or a [Raygun Personal Access Token](https://app.raygun.com/user/tokens)

## 🚀 Getting Started

The Raygun MCP server is hosted at:

```text
https://api.raygun.com/v3/mcp
```

Raygun hosts and updates the service, so there is no package or local server to install.

[![Install in Cursor](https://img.shields.io/badge/Cursor-Install_Raygun_MCP-111111?logo=cursor&logoColor=white)](https://cursor.com/en/install-mcp?name=raygun&config=eyJ1cmwiOiJodHRwczovL2FwaS5yYXlndW4uY29tL3YzL21jcCJ9)
[![Install in VS Code](https://img.shields.io/badge/VS_Code-Install_Raygun_MCP-0098FF?logo=visualstudiocode&logoColor=white)](https://vscode.dev/redirect/mcp/install?name=raygun&config=%7B%22type%22%3A%22http%22%2C%22url%22%3A%22https%3A%2F%2Fapi.raygun.com%2Fv3%2Fmcp%22%7D)

### OAuth (recommended)

Add the URL as a Streamable HTTP server without an `Authorization` header. On first connection, your MCP client will open Raygun in your browser so you can sign in, select a plan, review the requested permissions, and authorize access.

You do not need to supply an OAuth client ID or client secret. Raygun supports automatic client registration.

<details>
<summary>Codex and the ChatGPT desktop app</summary>

```bash
codex mcp add raygun --url https://api.raygun.com/v3/mcp
codex mcp login raygun
```

This configuration is shared by the Codex CLI, Codex IDE extension, and ChatGPT desktop app on the same Codex host.

In the ChatGPT desktop app, open **Settings > MCP servers**, select **Add server**, choose **Streamable HTTP**, and enter the Raygun endpoint. Save and restart the app, then select **Authenticate** for Raygun.

ChatGPT on the web uses remote MCP tools through Plugins and does not read your local Codex MCP configuration. A separately published Raygun Plugin would be installed from the Plugins catalog.

</details>

<details>
<summary>Claude Code</summary>

```bash
claude mcp add --transport http raygun https://api.raygun.com/v3/mcp
```

Run `/mcp` in Claude Code and follow the browser authentication flow.

</details>

<details>
<summary>Cursor</summary>

```json
{
  "mcpServers": {
    "raygun": {
      "url": "https://api.raygun.com/v3/mcp"
    }
  }
}
```

Cursor will prompt you to authenticate when it connects.

</details>

<details>
<summary>VS Code</summary>

```json
{
  "servers": {
    "raygun": {
      "type": "http",
      "url": "https://api.raygun.com/v3/mcp"
    }
  }
}
```

VS Code will prompt you to authenticate when it connects.

</details>

### Personal Access Token

PAT authentication remains supported for clients without MCP OAuth support and for automation. The following example uses Cursor's configuration format; other clients use the same `Authorization` header in their HTTP server configuration:

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

### 💬 Your First Prompt

After configuration, try asking your AI assistant:

- “Find the errors that first appeared after the latest deployment of my checkout application.”
- “Investigate the most frequently occurring production error and show me a representative stack trace.”
- “Which backend methods or database queries consumed the most time in the last 24 hours?”
- “Show me the last session for customer `user@example.com` and explain where their experience failed.”
- “Compare p95 page performance over the last seven days and identify the largest regression.”

## 🛠️ Tools

The Raygun MCP server provides the following categories of tools:

<details>
<summary>📱 Applications</summary>

- `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

</details>

<details>
<summary>🐛 Error Management</summary>

- `error_groups_list` - List error groups within an application
- `error_groups_search` - Search occurrences by error, stack trace, URL, version, user, tags, or custom data
- `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_group_read_comments` - Review existing investigation notes
- `error_group_instances_list` - List occurrences in an error group
- `error_instance_get` - Get the full stack trace and context for an occurrence

</details>

<details>
<summary>🚀 Deployments</summary>

- `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

</details>

<details>
<summary>👥 Customers & Sessions</summary>

- `customers_search` - Search customers by name, email, or identifier
- `customer_investigate` - Get customer profile, recent error groups, and sessions
- `sessions_list` - List user sessions with environment and device data
- `session_investigate` - Inspect a session's environment, errors, and page views

</details>

<details>
<summary>🔬 Application Performance Monitoring</summary>

- `apm_issues_search` - Find recurring backend performance issues and anti-patterns
- `apm_issue_investigate` - Inspect an issue's metrics and affected traces
- `apm_traces_search` - Find slow or failing backend requests
- `apm_trace_investigate` - Inspect profiler threads and significant calls in a trace
- `apm_hotspots_search` - Rank slow methods, database queries, and external calls

</details>

<details>
<summary>📊 Performance & Metrics</summary>

- `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

</details>

<details>
<summary>🤝 Team Management</summary>

- `invitations_manage` - List and review team invitations
- `invitation_send` - Send a new team invitation
- `invitation_revoke` - Cancel a pending invitation

</details>

For detailed documentation on each tool, see the [Tool Reference](https://github.com/MindscapeHQ/mcp-server-raygun/blob/main/TOOLS.md).

## 🔐 Authentication

### OAuth

Raygun implements the MCP authorization flow for HTTP clients. The server advertises its authorization server through OAuth Protected Resource Metadata, and compatible clients register themselves automatically using Client ID Metadata Documents or Dynamic Client Registration.

Access is tied to the Raygun user, plan, and scopes approved on the consent screen. Compatible clients securely store and refresh their own tokens.

Each OAuth connection grants access to one Raygun plan. Add another Raygun MCP configuration and authorize it separately when you need to work with a different plan.

### Security and access

- OAuth never gives the client more access than the signed-in Raygun user already has.
- Read and write access is controlled by the scopes approved during OAuth or assigned to the PAT.
- Some tools can change Raygun data, including error statuses, deployments, invitations, comments, and ingestion API keys. Review write actions before approving them in your MCP client.
- Application tools can return or rotate ingestion API keys. Treat returned keys as credentials; rotating a key immediately invalidates the previous one.
- Tool results may be included in conversations processed by your chosen AI client or model provider. Follow your organization's policies for sharing diagnostic and customer data.

### Obtaining a Personal Access Token

PATs remain available w
error-reportingllm-agentsmcpreal-user-monitoring

Lo que la gente pregunta sobre mcp-server-raygun

¿Qué es MindscapeHQ/mcp-server-raygun?

+

MindscapeHQ/mcp-server-raygun es mcp servers para el ecosistema de Claude AI. Give your AI coding assistants access to Raygun so they can investigate, explain, and help resolve errors for you. Tiene 22 estrellas en GitHub y su última actualización registrada es del 2026-09-02.

¿Cómo se instala mcp-server-raygun?

+

Puedes instalar mcp-server-raygun clonando el repositorio (https://github.com/MindscapeHQ/mcp-server-raygun) o siguiendo las instrucciones del README en GitHub. ClaudeWave también te ofrece bloques de instalación rápida en esta misma página.

¿Es seguro usar MindscapeHQ/mcp-server-raygun?

+

Nuestro agente de seguridad ha analizado MindscapeHQ/mcp-server-raygun y le ha asignado un Trust Score de 75/100 (tier: Trusted). Revisa el desglose completo de comprobaciones superadas y flags en esta página.

¿Quién mantiene MindscapeHQ/mcp-server-raygun?

+

MindscapeHQ/mcp-server-raygun es mantenido por MindscapeHQ. La última actividad registrada en GitHub es del 2026-09-02, con 3 issues abiertos.

¿Hay alternativas a mcp-server-raygun?

+

Sí. En ClaudeWave puedes explorar mcp servers similares en /categories/mcp, ordenados por popularidad o actividad reciente.

Despliega mcp-server-raygun en tu cloud

Lleva este repo a producción en minutos. Cada plataforma genera su propio entorno con variables de entorno editables.

¿Mantienes este repo? Añade un badge a tu README

Pega el badge en tu README de GitHub para mostrar que está auditado por ClaudeWave. Cada badge enlaza de vuelta a esta página y muestra el Trust Score actual.

Featured on ClaudeWave: MindscapeHQ/mcp-server-raygun
[![Featured on ClaudeWave](https://claudewave.com/api/badge/mindscapehq-mcp-server-raygun)](https://claudewave.com/repo/mindscapehq-mcp-server-raygun)
<a href="https://claudewave.com/repo/mindscapehq-mcp-server-raygun"><img src="https://claudewave.com/api/badge/mindscapehq-mcp-server-raygun" alt="Featured on ClaudeWave: MindscapeHQ/mcp-server-raygun" width="320" height="64" /></a>

Más MCP Servers

Alternativas a mcp-server-raygun