Skip to content

Commit 1525566

Browse files
committed
fix: update server definition (input type 'password' -> 'text' for PAGERDUTY_USER_API_KEY; fixed package name)
1 parent 2916ead commit 1525566

1 file changed

Lines changed: 18 additions & 11 deletions

File tree

servers/com.pagerduty-mcp.json

Lines changed: 18 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,23 @@
66
"description": "Manage PagerDuty incidents, services, on-call schedules, and users. List open incidents, acknowledge, resolve, and trigger new ones.",
77
"icon": "https://avatars.githubusercontent.com/u/766800?v=4",
88
"schema_version": "2.1",
9-
"categories": ["monitoring", "communication"],
10-
"tags": ["pagerduty", "incidents", "on-call", "alerting", "monitoring"],
11-
9+
"categories": [
10+
"monitoring",
11+
"communication"
12+
],
13+
"tags": [
14+
"pagerduty",
15+
"incidents",
16+
"on-call",
17+
"alerting",
18+
"monitoring"
19+
],
1220
"transport": {
1321
"type": "stdio",
1422
"command": "uvx",
15-
"args": ["pagerduty-mcp-server"],
23+
"args": [
24+
"pagerduty-mcp"
25+
],
1626
"env": {
1727
"PAGERDUTY_USER_API_KEY": "${input:PAGERDUTY_USER_API_KEY}"
1828
},
@@ -22,7 +32,7 @@
2232
"id": "PAGERDUTY_USER_API_KEY",
2333
"label": "PagerDuty User API Key",
2434
"description": "User-level REST API key for PagerDuty.",
25-
"type": "password",
35+
"type": "text",
2636
"required": true,
2737
"secret": true,
2838
"placeholder": "u+xxxxxxxxxxxxxxxxxxxx",
@@ -35,26 +45,23 @@
3545
]
3646
}
3747
},
38-
3948
"auth": {
4049
"type": "api_key",
4150
"instructions": "Create a user API token in PagerDuty under My Profile > User Settings > API Access"
4251
},
43-
4452
"contributor": {
4553
"name": "PagerDuty",
4654
"github": "PagerDuty",
4755
"url": "https://www.pagerduty.com"
4856
},
49-
5057
"links": {
5158
"repository": "https://github.com/PagerDuty/pagerduty-mcp-server",
5259
"homepage": "https://www.pagerduty.com",
5360
"documentation": "https://developer.pagerduty.com/docs/"
5461
},
55-
56-
"platforms": ["all"],
57-
62+
"platforms": [
63+
"all"
64+
],
5865
"capabilities": {
5966
"tools": true,
6067
"resources": false,

0 commit comments

Comments
 (0)