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.
Conectar
Añade esta configuración a .claude/mcp.json
{
"mcpServers": {
"pagerduty": {
"command": "npx",
"args": [],
"env": {
"PAGERDUTY_API_TOKEN": "<YOUR_PAGERDUTY_API_TOKEN>"
}
}
}
}Herramientas (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"
}
}
}Recursos
Este servidor no expone ningún recurso.
Prompts
Este servidor no expone ningún prompt.
Información del servidor
- Licencia
- MIT
- Versión
- 1.1.0
- Estrellas
- 274
- Última actualización
- 9 de julio de 2026