jira_watcher_remove
Remove a user from a JIRA issue's watchers using their Atlassian accountId. Requires explicit confirmation flag to prevent accidental removal.
Instructions
Remove a user (by Atlassian accountId, not a name or email — resolve one with jira_user_search) from the watchers of a JIRA issue. Destructive operation: callers must explicitly pass confirm: true for the removal to proceed; otherwise the tool refuses with an error. Returns YAML {status: ok}. Mirrors omni-dev atlassian jira watcher remove.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| key | Yes | JIRA issue key (e.g., `PROJ-123`). | |
| confirm | Yes | Must be set to `true` — destructive guard. | |
| account_id | Yes | Atlassian `accountId` of the user (not a display name or email). Use `jira_user_search` to resolve a name or email to an `accountId`. |