|
| 1 | +{ |
| 2 | + "$schema": "../schemas/server-definition.schema.json", |
| 3 | + "id": "com.raygun-mcp", |
| 4 | + "name": "Raygun", |
| 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": ["monitoring", "developer-tools"], |
| 10 | + "tags": ["raygun", "errors", "monitoring", "crash-reporting", "debugging", "observability"], |
| 11 | + |
| 12 | + "transport": { |
| 13 | + "type": "stdio", |
| 14 | + "command": "npx", |
| 15 | + "args": ["-y", "@raygun.io/mcp-server-raygun"], |
| 16 | + "env": { |
| 17 | + "RAYGUN_PAT_TOKEN": "${input:RAYGUN_PAT_TOKEN}" |
| 18 | + }, |
| 19 | + "metadata": { |
| 20 | + "inputs": [ |
| 21 | + { |
| 22 | + "id": "RAYGUN_PAT_TOKEN", |
| 23 | + "label": "Raygun Personal Access Token", |
| 24 | + "description": "Personal Access Token for the Raygun API.", |
| 25 | + "type": "password", |
| 26 | + "required": true, |
| 27 | + "secret": true, |
| 28 | + "placeholder": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx", |
| 29 | + "obtain": { |
| 30 | + "url": "https://app.raygun.com/user/tokens", |
| 31 | + "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)", |
| 32 | + "button_label": "Get PAT Token" |
| 33 | + } |
| 34 | + } |
| 35 | + ] |
| 36 | + } |
| 37 | + }, |
| 38 | + |
| 39 | + "auth": { |
| 40 | + "type": "api_key", |
| 41 | + "instructions": "Create a Personal Access Token in My Settings at https://app.raygun.com" |
| 42 | + }, |
| 43 | + |
| 44 | + "contributor": { |
| 45 | + "name": "Raygun", |
| 46 | + "github": "MindscapeHQ", |
| 47 | + "url": "https://raygun.com" |
| 48 | + }, |
| 49 | + |
| 50 | + "links": { |
| 51 | + "repository": "https://github.com/MindscapeHQ/mcp-server-raygun", |
| 52 | + "homepage": "https://raygun.com", |
| 53 | + "documentation": "https://raygun.com/documentation/product-guides/raygun-api/" |
| 54 | + }, |
| 55 | + |
| 56 | + "platforms": ["all"], |
| 57 | + |
| 58 | + "capabilities": { |
| 59 | + "tools": true, |
| 60 | + "resources": false, |
| 61 | + "prompts": false, |
| 62 | + "read_only_mode": false |
| 63 | + } |
| 64 | +} |
0 commit comments