Skip to content

Commit 89a4479

Browse files
authored
feat: add PagerDuty MCP server definition (#57)
* Add PagerDuty MCP server definition Official PagerDuty MCP server for incident management, on-call schedules, and alerting. Uses pagerduty-mcp-server Python package via uvx with stdio transport. https://claude.ai/code/session_013AxurW8hPAfnUNvik354Xx * fix: update server definition (input type 'password' -> 'text' for PAGERDUTY_USER_API_KEY; fixed package name) * fix: rename server files with transport suffix - com.pagerduty-mcp.json -> com.pagerduty-mcp-uvx.json (id: com.pagerduty-mcp-uvx) Signed-off-by: Mohammod Al Amin Ashik <maa.ashik00@gmail.com> --------- Signed-off-by: Mohammod Al Amin Ashik <maa.ashik00@gmail.com>
1 parent 2abeb0c commit 89a4479

1 file changed

Lines changed: 71 additions & 0 deletions

File tree

servers/com.pagerduty-mcp-uvx.json

Lines changed: 71 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
{
2+
"$schema": "../schemas/server-definition.schema.json",
3+
"id": "com.pagerduty-mcp-uvx",
4+
"name": "PagerDuty (uvx)",
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": [
10+
"monitoring",
11+
"communication"
12+
],
13+
"tags": [
14+
"pagerduty",
15+
"incidents",
16+
"on-call",
17+
"alerting",
18+
"monitoring"
19+
],
20+
"transport": {
21+
"type": "stdio",
22+
"command": "uvx",
23+
"args": [
24+
"pagerduty-mcp"
25+
],
26+
"env": {
27+
"PAGERDUTY_USER_API_KEY": "${input:PAGERDUTY_USER_API_KEY}"
28+
},
29+
"metadata": {
30+
"inputs": [
31+
{
32+
"id": "PAGERDUTY_USER_API_KEY",
33+
"label": "PagerDuty User API Key",
34+
"description": "User-level REST API key for PagerDuty.",
35+
"type": "text",
36+
"required": true,
37+
"secret": true,
38+
"placeholder": "u+xxxxxxxxxxxxxxxxxxxx",
39+
"obtain": {
40+
"url": "https://support.pagerduty.com/main/docs/api-access-keys#generate-a-user-token-rest-api-key",
41+
"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",
42+
"button_label": "Get API Key"
43+
}
44+
}
45+
]
46+
}
47+
},
48+
"auth": {
49+
"type": "api_key",
50+
"instructions": "Create a user API token in PagerDuty under My Profile > User Settings > API Access"
51+
},
52+
"contributor": {
53+
"name": "PagerDuty",
54+
"github": "PagerDuty",
55+
"url": "https://www.pagerduty.com"
56+
},
57+
"links": {
58+
"repository": "https://github.com/PagerDuty/pagerduty-mcp-server",
59+
"homepage": "https://www.pagerduty.com",
60+
"documentation": "https://developer.pagerduty.com/docs/"
61+
},
62+
"platforms": [
63+
"all"
64+
],
65+
"capabilities": {
66+
"tools": true,
67+
"resources": false,
68+
"prompts": false,
69+
"read_only_mode": false
70+
}
71+
}

0 commit comments

Comments
 (0)