From f80ab30921fe58be63db56e52ca00dfdc130dd5b Mon Sep 17 00:00:00 2001 From: Mohammod Al Amin Ashik Date: Wed, 11 Feb 2026 12:47:32 +0000 Subject: [PATCH 1/4] Add Raygun MCP server definition Official Raygun MCP server for error monitoring, crash reporting, and deployment management. Uses @raygun.io/mcp-server-raygun npm package with stdio transport. https://claude.ai/code/session_013AxurW8hPAfnUNvik354Xx --- servers/com.raygun-mcp.json | 64 +++++++++++++++++++++++++++++++++++++ 1 file changed, 64 insertions(+) create mode 100644 servers/com.raygun-mcp.json diff --git a/servers/com.raygun-mcp.json b/servers/com.raygun-mcp.json new file mode 100644 index 0000000..dc6a4d2 --- /dev/null +++ b/servers/com.raygun-mcp.json @@ -0,0 +1,64 @@ +{ + "$schema": "../schemas/server-definition.schema.json", + "id": "com.raygun-mcp", + "name": "Raygun", + "alias": "raygun", + "description": "Query and manage Raygun error groups, applications, deployments, and user sessions for error monitoring and crash reporting.", + "icon": "https://avatars.githubusercontent.com/u/1767684?v=4", + "schema_version": "2.1", + "categories": ["monitoring", "developer-tools"], + "tags": ["raygun", "errors", "monitoring", "crash-reporting", "debugging", "observability"], + + "transport": { + "type": "stdio", + "command": "npx", + "args": ["-y", "@raygun.io/mcp-server-raygun"], + "env": { + "RAYGUN_PAT_TOKEN": "${input:RAYGUN_PAT_TOKEN}" + }, + "metadata": { + "inputs": [ + { + "id": "RAYGUN_PAT_TOKEN", + "label": "Raygun Personal Access Token", + "description": "Personal Access Token for the Raygun API.", + "type": "password", + "required": true, + "secret": true, + "placeholder": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx", + "obtain": { + "url": "https://app.raygun.com/user/tokens", + "instructions": "1. Log in to app.raygun.com\n2. Go to My Settings\n3. Create a new Personal Access Token\n4. Copy the token immediately (it won't be shown again)", + "button_label": "Get PAT Token" + } + } + ] + } + }, + + "auth": { + "type": "api_key", + "instructions": "Create a Personal Access Token in My Settings at https://app.raygun.com" + }, + + "contributor": { + "name": "Raygun", + "github": "MindscapeHQ", + "url": "https://raygun.com" + }, + + "links": { + "repository": "https://github.com/MindscapeHQ/mcp-server-raygun", + "homepage": "https://raygun.com", + "documentation": "https://raygun.com/documentation/product-guides/raygun-api/" + }, + + "platforms": ["all"], + + "capabilities": { + "tools": true, + "resources": false, + "prompts": false, + "read_only_mode": false + } +} From 301a8d4e9ee4cf7b9a56b8ac5b3fc210ae6adceb Mon Sep 17 00:00:00 2001 From: Mohammod Al Amin Ashik Date: Thu, 19 Feb 2026 19:10:31 +0800 Subject: [PATCH 2/4] fix: update server definition (input type 'password' -> 'text' for RAYGUN_PAT_TOKEN) --- servers/com.raygun-mcp.json | 31 ++++++++++++++++++++----------- 1 file changed, 20 insertions(+), 11 deletions(-) diff --git a/servers/com.raygun-mcp.json b/servers/com.raygun-mcp.json index dc6a4d2..9b4c907 100644 --- a/servers/com.raygun-mcp.json +++ b/servers/com.raygun-mcp.json @@ -6,13 +6,25 @@ "description": "Query and manage Raygun error groups, applications, deployments, and user sessions for error monitoring and crash reporting.", "icon": "https://avatars.githubusercontent.com/u/1767684?v=4", "schema_version": "2.1", - "categories": ["monitoring", "developer-tools"], - "tags": ["raygun", "errors", "monitoring", "crash-reporting", "debugging", "observability"], - + "categories": [ + "monitoring", + "developer-tools" + ], + "tags": [ + "raygun", + "errors", + "monitoring", + "crash-reporting", + "debugging", + "observability" + ], "transport": { "type": "stdio", "command": "npx", - "args": ["-y", "@raygun.io/mcp-server-raygun"], + "args": [ + "-y", + "@raygun.io/mcp-server-raygun" + ], "env": { "RAYGUN_PAT_TOKEN": "${input:RAYGUN_PAT_TOKEN}" }, @@ -22,7 +34,7 @@ "id": "RAYGUN_PAT_TOKEN", "label": "Raygun Personal Access Token", "description": "Personal Access Token for the Raygun API.", - "type": "password", + "type": "text", "required": true, "secret": true, "placeholder": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx", @@ -35,26 +47,23 @@ ] } }, - "auth": { "type": "api_key", "instructions": "Create a Personal Access Token in My Settings at https://app.raygun.com" }, - "contributor": { "name": "Raygun", "github": "MindscapeHQ", "url": "https://raygun.com" }, - "links": { "repository": "https://github.com/MindscapeHQ/mcp-server-raygun", "homepage": "https://raygun.com", "documentation": "https://raygun.com/documentation/product-guides/raygun-api/" }, - - "platforms": ["all"], - + "platforms": [ + "all" + ], "capabilities": { "tools": true, "resources": false, From 6a896111c2ac7523e03223e21f7c74d9ef7b50ff Mon Sep 17 00:00:00 2001 From: Mohammod Al Amin Ashik Date: Thu, 19 Feb 2026 19:20:47 +0800 Subject: [PATCH 3/4] fix: update Raygun PAT token obtain URL --- servers/com.raygun-mcp.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/servers/com.raygun-mcp.json b/servers/com.raygun-mcp.json index 9b4c907..bd9761c 100644 --- a/servers/com.raygun-mcp.json +++ b/servers/com.raygun-mcp.json @@ -39,8 +39,8 @@ "secret": true, "placeholder": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx", "obtain": { - "url": "https://app.raygun.com/user/tokens", - "instructions": "1. Log in to app.raygun.com\n2. Go to My Settings\n3. Create a new Personal Access Token\n4. Copy the token immediately (it won't be shown again)", + "url": "https://app.raygun.com/user", + "instructions": "1. Log in to app.raygun.com\n2. Go to My Settings (click your profile)\n3. Scroll to Personal Access Tokens section\n4. Click 'Create new PAT'\n5. Copy the generated token", "button_label": "Get PAT Token" } } From 8e0eaa4af3ad6e27a16d8eaa3678af4679bde8e1 Mon Sep 17 00:00:00 2001 From: Mohammod Al Amin Ashik Date: Thu, 19 Feb 2026 22:45:37 +0800 Subject: [PATCH 4/4] fix: rename server files with transport suffix - com.raygun-mcp.json -> com.raygun-mcp-npx.json (id: com.raygun-mcp-npx) Signed-off-by: Mohammod Al Amin Ashik --- servers/{com.raygun-mcp.json => com.raygun-mcp-npx.json} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename servers/{com.raygun-mcp.json => com.raygun-mcp-npx.json} (97%) diff --git a/servers/com.raygun-mcp.json b/servers/com.raygun-mcp-npx.json similarity index 97% rename from servers/com.raygun-mcp.json rename to servers/com.raygun-mcp-npx.json index bd9761c..e0fffda 100644 --- a/servers/com.raygun-mcp.json +++ b/servers/com.raygun-mcp-npx.json @@ -1,7 +1,7 @@ { "$schema": "../schemas/server-definition.schema.json", - "id": "com.raygun-mcp", - "name": "Raygun", + "id": "com.raygun-mcp-npx", + "name": "Raygun (npx)", "alias": "raygun", "description": "Query and manage Raygun error groups, applications, deployments, and user sessions for error monitoring and crash reporting.", "icon": "https://avatars.githubusercontent.com/u/1767684?v=4",