CuratedMCP
OpenAI Agents SDK
Free

How to Install PagerDuty MCP in OpenAI Agents SDK

Official PagerDuty integration — automate incident response, on-call, and alerts with AI

What PagerDuty MCP does

The official PagerDuty MCP server gives AI agents access to incident response workflows. It can create incidents, manage alerts, and coordinate on-call schedules. Features: - Create and update incidents with urgency and priority - List on-call users and schedules - Manage escalation policies and teams - Query alert history and response timelines - Annotate incidents and add responder notes - Trigger incident actions from AI commands PagerDuty MCP is made for operations teams that want AI to keep incidents moving and responders aligned.

pagerduty
incident
oncall
alerts
ops

Installation steps

  1. 1Install: pip install openai-agents
  2. 2Copy the snippet below into your agent code
  3. 3Replace placeholder env values with your real keys
  4. 4Pass mcp_servers=[mcp_server] to your Agent()

Python snippet

Python snippetpython
from agents import Agent
from agents.mcp import MCPServerStdio

mcp_server = MCPServerStdio(
    command="npx",
    args=["-y", "@pagerduty/mcp"],
    env={
        "PAGERDUTY_API_TOKEN": "...",
        "PAGERDUTY_INTEGRATION_KEY": "...",
    },
)

agent = Agent(
    name="My Agent",
    model="gpt-4o",
    mcp_servers=[mcp_server],
)
Full server details Open Config Editor

Install in other clients

For maintainers

If you maintain PagerDuty MCP, add this badge to your README to show it's verified on CuratedMCP:

CuratedMCP Verified
[![CuratedMCP Verified](https://curatedmcp.com/api/badge/pagerduty-mcp)](https://curatedmcp.com/marketplace/pagerduty-mcp)

Related servers