List JSM alert notes
jsm_list_alert_notesRetrieve human notes and integration updates on a JSM alert to see triage context before responding; avoids redoing work already documented.
Instructions
List the notes (human comments) recorded on a JSM alert's activity timeline, newest first by default.
Notes are where responders write triage context, and where integrations append re-fire and resolution updates for a deduplicated alert. Read them before acting on an alert so you don't repeat work someone already did.
Args:
alert_id (string): the full alert id (not the tinyId)
limit (number): 1-100, default 20
order ('asc' | 'desc'): default 'desc'
offset (string, optional): opaque cursor from a previous response's next_cursor
response_format ('markdown' | 'json'): default 'markdown'
Returns (json format): { "notes": [{ "note": string, "owner": string, "createdAt": string, "offset": string }], "pagination": { "count": number, "has_more": boolean, "next_cursor": string } }
Examples:
"Has anyone looked at this alert yet?" -> alert_id=, limit=10
"Read the full triage history oldest first" -> order="asc", limit=100
Note: these endpoints page with opaque cursors, not numeric offsets — pass next_cursor back as 'offset'.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum number of records to return (1-100, default 20). | |
| order | No | Chronological order of returned entries (default 'desc', newest first). | desc |
| offset | No | Cursor from a previous response's 'next_cursor'. These endpoints use opaque cursors, not numeric offsets. | |
| alert_id | Yes | Full alert id, e.g. '9b251e07-73c9-4907-9996-8cb53a6a20d0-1704440650350'. This is NOT the short tinyId shown in the JSM UI — get the full id from jsm_list_alerts first. | |
| response_format | No | Output format. 'markdown' is compact and human-readable (default); 'json' returns every field for programmatic use. | markdown |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| notes | Yes | ||
| pagination | Yes |