|
| 1 | +{ |
| 2 | + "$schema": "../schemas/server-definition.schema.json", |
| 3 | + "id": "com.pagerduty-mcp", |
| 4 | + "name": "PagerDuty", |
| 5 | + "alias": "pagerduty", |
| 6 | + "description": "Manage PagerDuty incidents, services, on-call schedules, and users. List open incidents, acknowledge, resolve, and trigger new ones.", |
| 7 | + "icon": "https://avatars.githubusercontent.com/u/766800?v=4", |
| 8 | + "schema_version": "2.1", |
| 9 | + "categories": ["monitoring", "communication"], |
| 10 | + "tags": ["pagerduty", "incidents", "on-call", "alerting", "monitoring"], |
| 11 | + |
| 12 | + "transport": { |
| 13 | + "type": "stdio", |
| 14 | + "command": "uvx", |
| 15 | + "args": ["pagerduty-mcp-server"], |
| 16 | + "env": { |
| 17 | + "PAGERDUTY_USER_API_KEY": "${input:PAGERDUTY_USER_API_KEY}" |
| 18 | + }, |
| 19 | + "metadata": { |
| 20 | + "inputs": [ |
| 21 | + { |
| 22 | + "id": "PAGERDUTY_USER_API_KEY", |
| 23 | + "label": "PagerDuty User API Key", |
| 24 | + "description": "User-level REST API key for PagerDuty.", |
| 25 | + "type": "password", |
| 26 | + "required": true, |
| 27 | + "secret": true, |
| 28 | + "placeholder": "u+xxxxxxxxxxxxxxxxxxxx", |
| 29 | + "obtain": { |
| 30 | + "url": "https://support.pagerduty.com/main/docs/api-access-keys#generate-a-user-token-rest-api-key", |
| 31 | + "instructions": "1. Log in to PagerDuty\n2. Navigate to My Profile > User Settings\n3. Under API Access, click 'Create API User Token'\n4. Copy the generated key", |
| 32 | + "button_label": "Get API Key" |
| 33 | + } |
| 34 | + } |
| 35 | + ] |
| 36 | + } |
| 37 | + }, |
| 38 | + |
| 39 | + "auth": { |
| 40 | + "type": "api_key", |
| 41 | + "instructions": "Create a user API token in PagerDuty under My Profile > User Settings > API Access" |
| 42 | + }, |
| 43 | + |
| 44 | + "contributor": { |
| 45 | + "name": "PagerDuty", |
| 46 | + "github": "PagerDuty", |
| 47 | + "url": "https://www.pagerduty.com" |
| 48 | + }, |
| 49 | + |
| 50 | + "links": { |
| 51 | + "repository": "https://github.com/PagerDuty/pagerduty-mcp-server", |
| 52 | + "homepage": "https://www.pagerduty.com", |
| 53 | + "documentation": "https://developer.pagerduty.com/docs/" |
| 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