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.

Подключение

Добавьте эту конфигурацию в .claude/mcp.json

{
  "mcpServers": {
    "pagerduty": {
      "command": "npx",
      "args": [],
      "env": {
        "PAGERDUTY_API_TOKEN": "<YOUR_PAGERDUTY_API_TOKEN>"
      }
    }
  }
}

Инструменты (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"
    }
  }
}

Ресурсы

Этот сервер не предоставляет ресурсы.

Промпты

Этот сервер не предоставляет промпты.

Сведения о сервере

Автор
PagerDuty (@PagerDuty)
Репозиторий
https://github.com/PagerDuty/pagerduty-mcp-server
Лицензия
MIT
Версия
1.1.0
Звёзды
274
Последнее обновление
9 июля 2026 г.