Skip to content

Commit 130c6cd

Browse files
authored
feat: add Raygun MCP server definition (#66)
* 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 * fix: update server definition (input type 'password' -> 'text' for RAYGUN_PAT_TOKEN) * fix: update Raygun PAT token obtain URL * 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 <maa.ashik00@gmail.com> --------- Signed-off-by: Mohammod Al Amin Ashik <maa.ashik00@gmail.com>
1 parent 3ea79f5 commit 130c6cd

1 file changed

Lines changed: 73 additions & 0 deletions

File tree

servers/com.raygun-mcp-npx.json

Lines changed: 73 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
1+
{
2+
"$schema": "../schemas/server-definition.schema.json",
3+
"id": "com.raygun-mcp-npx",
4+
"name": "Raygun (npx)",
5+
"alias": "raygun",
6+
"description": "Query and manage Raygun error groups, applications, deployments, and user sessions for error monitoring and crash reporting.",
7+
"icon": "https://avatars.githubusercontent.com/u/1767684?v=4",
8+
"schema_version": "2.1",
9+
"categories": [
10+
"monitoring",
11+
"developer-tools"
12+
],
13+
"tags": [
14+
"raygun",
15+
"errors",
16+
"monitoring",
17+
"crash-reporting",
18+
"debugging",
19+
"observability"
20+
],
21+
"transport": {
22+
"type": "stdio",
23+
"command": "npx",
24+
"args": [
25+
"-y",
26+
"@raygun.io/mcp-server-raygun"
27+
],
28+
"env": {
29+
"RAYGUN_PAT_TOKEN": "${input:RAYGUN_PAT_TOKEN}"
30+
},
31+
"metadata": {
32+
"inputs": [
33+
{
34+
"id": "RAYGUN_PAT_TOKEN",
35+
"label": "Raygun Personal Access Token",
36+
"description": "Personal Access Token for the Raygun API.",
37+
"type": "text",
38+
"required": true,
39+
"secret": true,
40+
"placeholder": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
41+
"obtain": {
42+
"url": "https://app.raygun.com/user",
43+
"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",
44+
"button_label": "Get PAT Token"
45+
}
46+
}
47+
]
48+
}
49+
},
50+
"auth": {
51+
"type": "api_key",
52+
"instructions": "Create a Personal Access Token in My Settings at https://app.raygun.com"
53+
},
54+
"contributor": {
55+
"name": "Raygun",
56+
"github": "MindscapeHQ",
57+
"url": "https://raygun.com"
58+
},
59+
"links": {
60+
"repository": "https://github.com/MindscapeHQ/mcp-server-raygun",
61+
"homepage": "https://raygun.com",
62+
"documentation": "https://raygun.com/documentation/product-guides/raygun-api/"
63+
},
64+
"platforms": [
65+
"all"
66+
],
67+
"capabilities": {
68+
"tools": true,
69+
"resources": false,
70+
"prompts": false,
71+
"read_only_mode": false
72+
}
73+
}

0 commit comments

Comments
 (0)