Overview
Theadd_note_to_incident tool allows you to add notes to an incident to document investigation progress, findings, remediation steps, or any other relevant information. Notes are visible to all responders and stakeholders following the incident.
This tool requires write mode to be enabled. See Write Mode Configuration for details.
Parameters
The ID of the incident to add a note to.Example:
"Q1234567890ABCDE"The note text to be added. Can include markdown formatting.Example:
"Identified root cause: Database connection pool exhausted due to long-running queries. Increasing pool size from 10 to 20."Usage Examples
Add an investigation update
Document root cause
Add remediation steps
Add a status update
Response Format
Returns anIncidentNote object representing the created note.
The unique ID of the note.
The content of the note that was added.
The timestamp when the note was created.
Common Errors
Best Practices
Viewing Notes
To view existing notes on an incident, use thelist_incident_notes tool:
get_incident:
Related Tools
list_incident_notes
View all notes on an incident
get_incident
Get incident details
manage_incidents
Update incident status
add_responders
Request additional responders
list_incident_notes
Tool Name:
list_incident_notesCategory: IncidentsMode: Read-onlyOverview
Thelist_incident_notes tool retrieves all notes that have been added to a specific incident.
Parameters
The ID of the incident to retrieve notes from.Example:
"Q1234567890ABCDE"Response Format
Returns aListResponseModel[IncidentNote] containing all notes.
Source Reference
Functions:add_note_to_incidentinpagerduty_mcp/tools/incidents.py:223list_incident_notesinpagerduty_mcp/tools/incidents.py:202
IncidentNote in pagerduty_mcp/models/incidents.py