Skip to main content
Glama

Raygun MCP Server

Official
by MindscapeHQ

レイガン MCP サーバー

Raygun API V3エンドポイント用のMCPサーバー。クラッシュレポートおよびリアルユーザーモニタリングアプリケーションとの連携を可能にします。このサーバーは、モデルコンテキストプロトコル(MCP)を介してRaygun API機能への包括的なアクセスを提供します。

特徴

ツール

アプリケーション
  • list_applications - アカウントのすべてのアプリケーションを一覧表示します
  • get_application - 識別子でアプリケーションの詳細を取得する
  • get_application_by_api_key - APIキーでアプリケーションの詳細を取得する
  • regenerate_application_api_key - アプリケーションの新しい API キーを生成する
エラー管理
  • list_error_groups - アプリケーションのエラーグループを一覧表示する
  • get_error_group - エラーグループに関する詳細情報を取得する
  • resolve_error_group - エラーグループのステータスを解決済みに設定する
  • activate_error_group - エラーグループのステータスをアクティブに設定する
  • ignore_error_group - エラーグループのステータスを無視に設定する
  • permanently_ignore_error_group - エラーグループのステータスを「永久に無視」に設定する
展開管理
  • list_deployments - アプリケーションのデプロイメントを一覧表示する
  • get_deployment - 識別子でデプロイメントの詳細を取得する
  • delete_deployment - デプロイメントを削除する
  • update_deployment - デプロイメント情報を更新する
  • reprocess_deployment_commits - デプロイメントコミットデータを再処理する
ユーザーとセッションの管理
  • list_customers - アプリケーションの顧客を一覧表示する
  • list_sessions - アプリケーションのユーザーセッションを一覧表示する
  • get_session - 詳細なセッション情報を取得する
パフォーマンス監視
  • list_pages - アプリケーションの監視対象ページを一覧表示する
  • get_page_metrics_time_series - 時系列パフォーマンスメトリックを取得する
  • get_page_metrics_histogram - パフォーマンスメトリックのヒストグラムを取得する
  • get_error_metrics_time_series - 時系列エラーメトリックを取得する
ソースマップ
  • list_source_maps - アプリケーションのソースマップを一覧表示する
  • get_source_map - ソースマップの詳細を取得する
  • update_source_map - ソースマップ情報を更新する
  • delete_source_map - ソースマップを削除する
  • upload_source_map - 新しいソースマップをアップロードする
  • delete_all_source_maps - すべてのソースマップを削除します
チームマネジメント
  • list_invitations - 保留中のチーム招待を一覧表示する
  • send_invitation - 新しいチームの招待状を送信する
  • get_invitation - 招待の詳細を取得する
  • revoke_invitation - 保留中の招待を取り消す

構成

サーバーには次の環境変数が必要です。

  • RAYGUN_PAT_TOKEN (必須): Raygun PATトークン
  • SOURCEMAP_ALLOWED_DIRS (オプション): ソースマップ操作に許可されるディレクトリのコンマ区切りリスト

Claude Desktopでの使用

claude_desktop_config.jsonに追加します:

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

発達

依存関係をインストールします:

npm install

サーバーを構築します。

npm run build

自動リビルドを使用した開発の場合:

npm run watch

インストール

Claude Desktop で使用するには、サーバー設定を追加します。

MacOS の場合: ~/Library/Application Support/Claude/claude_desktop_config.json 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" } } } }

デバッグ

MCPサーバーはstdio経由で通信するため、デバッグが困難になる場合があります。パッケージスクリプトとして提供されているMCP Inspectorの使用をお勧めします。

npm run inspector

インスペクターは、ブラウザでデバッグ ツールにアクセスするための URL を提供します。

-
security - not tested
F
license - not found
-
quality - not tested

remote-capable server

The server can be hosted and run remotely because it primarily relies on remote services or has no dependency on the local environment.

Raygun API V3エンドポイント用のMCPサーバー。クラッシュレポートおよびリアルユーザーモニタリングアプリケーションとの連携を可能にします。このサーバーは、モデルコンテキストプロトコル(MCP)を介してRaygun API機能への包括的なアクセスを提供します。

  1. 特徴
    1. ツール
  2. 構成
    1. Claude Desktopでの使用
      1. 発達
        1. インストール
          1. デバッグ

        Related MCP Servers

        • -
          security
          A
          license
          -
          quality
          MCP Server provides a simpler API to interact with the Model Context Protocol by allowing users to define custom tools and services to streamline workflows and processes.
          Last updated -
          13
          2
          TypeScript
          MIT License
        • A
          security
          A
          license
          A
          quality
          The MCP server provides an interface to the Datadog API, enabling seamless management of incidents, monitoring, logs, dashboards, metrics, traces, and hosts. Its extensible design allows easy integration of additional Datadog APIs for future expansions.
          Last updated -
          14
          602
          74
          TypeScript
          Apache 2.0
          • Apple
        • A
          security
          A
          license
          A
          quality
          An MCP server that provides a comprehensive interface to Semgrep, enabling users to scan code for security vulnerabilities, create custom rules, and analyze scan results through the Model Context Protocol.
          Last updated -
          6
          178
          Python
          MIT License
          • Linux
          • Apple

        View all related MCP servers

        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/MindscapeHQ/mcp-server-raygun'

        If you have feedback or need assistance with the MCP directory API, please join our Discord server