Skip to content

acknowledge_events

Acknowledge one or more watch events, marking them as read. Acknowledged events are still retrievable but excluded when filtering with unacknowledgedOnly: true.

ParameterTypeRequiredDescription
eventIdsstring[]YesArray of event IDs to mark as acknowledged (min: 1)
{
"name": "acknowledge_events",
"arguments": {
"eventIds": ["evt_12345", "evt_12346", "evt_12347"]
}
}
{
"acknowledged": 3,
"total": 3,
"message": "All 3 event(s) acknowledged."
}
  • If some event IDs are not found or were already acknowledged, the acknowledged count will be less than total. The message field explains the discrepancy.
  • Acknowledging events does not delete them. They remain accessible through get_watch_events without the unacknowledgedOnly filter.