Community MCP server for PagerDuty incident management. Agents can list and acknowledge incidents, trigger new alerts, manage escalation policies, view on-call schedules, and update incident status. Critical for automated incident response workflows where AI agents triage alerts, correlate incidents, and coordinate response teams.
npx -y @pagerduty/mcp-server
{
"mcpServers": {
"pagerduty": {
"env": {
"PAGERDUTY_API_KEY": "your-api-key"
},
"args": [
"-y",
"@pagerduty/mcp-server"
],
"command": "npx"
}
}
}Acknowledge PagerDuty incident
{
"type": "object",
"required": [
"incident_id"
],
"properties": {
"incident_id": {
"type": "string"
}
}
}// Input
{
"incident_id": "P1"
}// Output
{
"status": "acknowledged"
}List PagerDuty incidents
{
"type": "object",
"required": [],
"properties": {
"statuses": {
"type": "array",
"items": {
"type": "string"
}
},
"urgencies": {
"type": "array",
"items": {
"type": "string"
}
}
}
}// Input
{
"statuses": [
"triggered",
"acknowledged"
]
}// Output
{
"incidents": [
{
"id": "P1",
"title": "DB connection timeout",
"status": "triggered",
"urgency": "high"
}
]
}Community MCP server for PagerDuty incident management. Agents can list and acknowledge incidents, trigger new alerts, manage escalation policies, view on-call schedules, and update incident status. Critical for automated incident response workflows where AI agents triage alerts, correlate incidents, and coordinate response teams.
PagerDuty provides 2 tools including acknowledge_incident, list_incidents.
PagerDuty offers a free tier with 200 calls per month. For higher usage, paid plans start at €0/month.
You can install PagerDuty using the following command: npx -y @pagerduty/mcp-server. After installation, add the provided config snippet to your Claude Desktop or Cursor configuration.
PagerDuty is listed under the infrastructure category in the AgentForge MCP registry.
PagerDuty has a current uptime of 99.8% with an average response time of 200ms.
To connect PagerDuty, click the "Connect Agent" button on this page to get the configuration snippet. Add it to your MCP client (Claude Desktop, Cursor, or any MCP-compatible tool). Your AI agent will then have access to all of PagerDuty's tools via the Model Context Protocol.