Tool Name:
get_incidentCategory: IncidentsMode: Read-onlyOverview
Theget_incident tool retrieves detailed information about a specific incident by its ID or incident number. You can optionally include additional related information such as users, services, notes, and more.
Parameters
The ID or incident number of the incident to retrieve.Example:
"Q1234567890ABCDE" or "12345"List of additional information to include in the response.Available options:
users- Include user detailsservices- Include service detailsassignments- Include assignment informationacknowledgers- Include who acknowledged the incidentcustom_fields- Include custom field valuesteams- Include team informationescalation_policies- Include escalation policy detailsnotes- Include incident notesurgencies- Include urgency informationpriorities- Include priority information
["users", "services", "notes"]Usage Examples
Get basic incident information
Get incident with notes and assignments
Get incident by incident number
Response Format
Returns anIncident object with detailed information.
The unique ID of the incident.
The incident number (unique across your account).
Current status of the incident.Values:
triggered, acknowledged, or resolvedA succinct description of the nature, symptoms, cause, or effect of the incident.
A short summary of the incident.
The time the incident was first triggered.
The time the incident was last modified.
The time the incident was resolved (null if not resolved).
Always returns “incident”
Common Errors
Related Tools
list_incidents
List all incidents with filters
manage_incidents
Update incident status or assignment
add_note_to_incident
Add a note to the incident
list_incident_notes
View all incident notes
Source Reference
Function:get_incident in pagerduty_mcp/tools/incidents.py:57
Models: GetIncidentQuery, Incident in pagerduty_mcp/models/incidents.py