PagerDuty MCP Server
DevOpsstdiov1.1.0
Official PagerDuty MCP server for incident management. Lets AI agents list and triage incidents, acknowledge and resolve them, look up on-call schedules, and query services so responders can manage operational incidents from AI-powered tools.
Connect
Add this configuration to .claude/mcp.json
{
"mcpServers": {
"pagerduty": {
"command": "npx",
"args": [],
"env": {
"PAGERDUTY_API_TOKEN": "<YOUR_PAGERDUTY_API_TOKEN>"
}
}
}
}Tools (3)
list_incidents
List PagerDuty incidents filtered by status, service, or urgency.
{
"type": "object",
"properties": {
"statuses": {
"type": "array",
"items": {
"type": "string"
},
"description": "Incident statuses to include (triggered, acknowledged, resolved)"
},
"service_ids": {
"type": "array",
"items": {
"type": "string"
},
"description": "Restrict to specific service IDs"
}
}
}manage_incident
Acknowledge, resolve, or reassign a PagerDuty incident.
{
"type": "object",
"required": [
"incident_id",
"action"
],
"properties": {
"action": {
"type": "string",
"description": "Action to perform (acknowledge, resolve, reassign)"
},
"incident_id": {
"type": "string",
"description": "ID of the incident to act on"
}
}
}list_oncalls
Look up who is currently on call for a schedule or escalation policy.
{
"type": "object",
"properties": {
"schedule_ids": {
"type": "array",
"items": {
"type": "string"
},
"description": "Schedule IDs to query"
}
}
}Resources
This server does not expose any resources.
Prompts
This server does not expose any prompts.
Server Information
- Author
- PagerDuty (@PagerDuty)
- License
- MIT
- Version
- 1.1.0
- Stars
- 274
- Last Updated
- July 9, 2026