Skip to content

manage_watch

Manage the lifecycle of an existing watch. Paused watches stop polling but retain their configuration and event history. Deleted watches are removed permanently.

ParameterTypeRequiredDescription
watchIdstringYesWatch ID to manage
actionstringYespause, resume, or delete
{
"name": "manage_watch",
"arguments": {
"watchId": "w_abc123def456",
"action": "pause"
}
}
{
"success": true,
"message": "Watch w_abc123def456 paused."
}
  • Paused watches retain their configuration and event history. Use resume to reactivate polling.
  • Deleted watches are permanent — all configuration and history is removed.
  • Returns success: false if the watch ID is not found.