update_notification
Mark a notification read/unread, snooze it, or archive it — a RyTask MCP tool for AI agents over the Model Context Protocol (requires the work:write permission).
Mark a notification read/unread, snooze it, or archive it.
| Required permission | work:write |
| Capability ID | notifications.update |
| Destructive | No |
Parameters
| Parameter | Type | Required | Notes |
|---|---|---|---|
read | boolean | no | |
snoozedUntil | string (ISO date-time) | null | no | |
archived | boolean | no | |
id | string (uuid) | yes |
Input schema (JSON Schema)
{
"type": "object",
"properties": {
"read": {
"type": "boolean"
},
"snoozedUntil": {
"anyOf": [
{
"type": "string",
"format": "date-time"
},
{
"type": "null"
}
]
},
"archived": {
"type": "boolean"
},
"id": {
"type": "string",
"format": "uuid"
}
},
"required": [
"id"
],
"additionalProperties": false
}Access control
A call succeeds only when the personal access token's scopes and the holder's role both allow work:write (effective permission = scope ∩ role, default-deny). The tool runs inside the token owner's organization — tenancy is never a parameter.
update_issue
Update a work item's fields (optimistic version; logs activity per field) — a RyTask MCP tool for AI agents over the Model Context Protocol (requires the work:write permission).
update_org_settings
Update organization settings (Owner/Admin) — a RyTask MCP tool for AI agents over the Model Context Protocol (requires the org:settings:write permission).