Overview
Thecreate_incident tool allows you to manually create a new incident in PagerDuty. This is useful when you need to report an issue that wasn’t automatically detected by monitoring systems.
This tool requires write mode to be enabled. See Write Mode Configuration for details.
Parameters
The incident creation request object.
The title of the incident. Should be a succinct description of the issue.Example:
"Database connection timeout on production"The urgency level of the incident.Allowed values:
high- High urgency (default)low- Low urgency
Additional details about the incident.
Free-form text providing more context about the incident.Example:
"Users are experiencing 504 Gateway Timeout errors when accessing the dashboard. Database connection pool appears to be exhausted."Always “incident_body”
Always “incident” (automatically set)
Usage Examples
Create a high urgency incident
Create a low urgency incident
Create a minimal incident
Response Format
Returns the createdIncident object.
The unique ID of the newly created incident.
The incident number (unique across your account).
Will be
triggered for newly created incidents.The title of the incident.
When the incident was created.
When the incident was last updated.
The service the incident is associated with.
Initial assignments based on the service’s escalation policy.
Common Errors
Best Practices
Related Tools
manage_incidents
Update incident status or assignment
add_note_to_incident
Add notes to track investigation
add_responders
Request additional responders
list_services
Find the correct service ID
Source Reference
Function:create_incident in pagerduty_mcp/tools/incidents.py:72
Models: IncidentCreateRequest, IncidentCreate, Incident in pagerduty_mcp/models/incidents.py