Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
73 changes: 73 additions & 0 deletions servers/com.raygun-mcp-npx.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
{
"$schema": "../schemas/server-definition.schema.json",
"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",
"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": "text",
"required": true,
"secret": true,
"placeholder": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
"obtain": {
"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"
}
}
]
}
},
"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
}
}