Raygun

平台与服务

by mindscapehq

用于调查错误、跟踪部署、分析性能,并统一管理应用监控与运行状况。

什么是 Raygun

用于调查错误、跟踪部署、分析性能,并统一管理应用监控与运行状况。

README

<div align="center">

🔭 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

</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
  • 👥 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!

<details> <summary>Amp</summary>

Guide: Amp MCP Documentation

bash
amp mcp add raygun --header "Authorization=Bearer YOUR_PAT_TOKEN" https://api.raygun.com/v3/mcp
</details> <details> <summary>Claude Code</summary>

Guide: Claude Code MCP Documentation

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

Guide: Cline MCP Documentation

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

</details> <details> <summary>Codex</summary>

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"]
</details> <details> <summary>Cursor</summary>

Go to Cursor SettingsMCPNew MCP Server

json
{
  "mcpServers": {
    "Raygun": {
      "url": "https://api.raygun.com/v3/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_PAT_TOKEN"
      }
    }
  }
}
</details> <details> <summary>Gemini CLI</summary>
bash
gemini mcp add --transport http raygun https://api.raygun.com/v3/mcp --header "Authorization: Bearer YOUR_PAT_TOKEN"
</details> <details> <summary>JetBrains AI Assistant</summary>

Guide: JetBrains AI Assistant MCP Documentation

json
{
  "mcpServers": {
    "Raygun": {
      "url": "https://api.raygun.com/v3/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_PAT_TOKEN"
      }
    }
  }
}
</details> <details> <summary>VS Code</summary>

Guide: VS Code MCP Servers

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

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": {}
    }
  }
}
</details>

💬 Your First Prompt

After configuration, try asking your AI assistant:

code
🔍 "Show me the most recent error groups in my Raygun applications"
code
🚀 "What were the latest deployments and did they introduce any new errors?"
code
📊 "Analyze the performance trends for my top pages over the last 7 days"

🛠️ 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_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
</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
</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.

🔑 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


<div align="center">

Built with ❤️ by Raygun

Raygun

</div>

常见问题

Raygun 是什么?

用于调查错误、跟踪部署、分析性能,并统一管理应用监控与运行状况。

相关 Skills

MCP构建

by anthropics

Universal
热门

聚焦高质量 MCP Server 开发,覆盖协议研究、工具设计、错误处理与传输选型,适合用 FastMCP 或 MCP SDK 对接外部 API、封装服务能力。

想让 LLM 稳定调用外部 API,就用 MCP构建:从 Python 到 Node 都有成熟指引,帮你更快做出高质量 MCP 服务器。

平台与服务
未扫描111.8k

Slack动图

by anthropics

Universal
热门

面向Slack的动图制作Skill,内置emoji/消息GIF的尺寸、帧率和色彩约束、校验与优化流程,适合把创意或上传图片快速做成可直接发送的Slack动画。

帮你快速做出适配 Slack 的动图,内置约束规则和校验工具,少踩上传与播放坑,做表情包和演示都更省心。

平台与服务
未扫描111.8k

MCP服务构建器

by alirezarezvani

Universal
热门

从 OpenAPI 一键生成 Python/TypeScript MCP server 脚手架,并校验 tool schema、命名规范与版本兼容性,适合把现有 REST API 快速发布成可生产演进的 MCP 服务。

帮你快速搭建 MCP 服务与后端 API,脚手架完善、扩展顺手,尤其适合想高效验证服务能力的开发者。

平台与服务
未扫描9.8k

相关 MCP Server

Slack 消息

编辑精选

by Anthropic

热门

Slack 是让 AI 助手直接读写你的 Slack 频道和消息的 MCP 服务器。

这个服务器解决了团队协作中需要 AI 实时获取 Slack 信息的痛点,特别适合开发团队让 Claude 帮忙汇总频道讨论或发送通知。不过,它目前只是参考实现,文档有限,不建议在生产环境直接使用——更适合开发者学习 MCP 如何集成第三方服务。

平台与服务
83.1k

by netdata

热门

io.github.netdata/mcp-server 是让 AI 助手实时监控服务器指标和日志的 MCP 服务器。

这个工具解决了运维人员需要手动检查系统状态的痛点,最适合 DevOps 团队让 Claude 自动分析性能数据。不过,它依赖 NetData 的现有部署,如果你没用过这个监控平台,得先花时间配置。

平台与服务
78.3k

by d4vinci

热门

Scrapling MCP Server 是专为现代网页设计的智能爬虫工具,支持绕过 Cloudflare 等反爬机制。

这个工具解决了爬取动态网页和反爬网站时的头疼问题,特别适合需要批量采集电商价格或新闻数据的开发者。不过,它依赖外部浏览器引擎,资源消耗较大,不适合轻量级任务。

平台与服务
34.9k

评论