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).
Update organization settings (Owner/Admin).
| Required permission | org:settings:write |
| Capability ID | orgs.settings.update |
| Destructive | No |
Parameters
| Parameter | Type | Required | Notes |
|---|---|---|---|
timezone | string | no | |
locale | string | no | |
weekStart | SUNDAY | MONDAY | no | |
workingDays | array of integer | no | |
workingHours | object | no | |
logoUrl | string | null | no | |
allowPublicSignup | boolean | no |
Input schema (JSON Schema)
{
"type": "object",
"properties": {
"timezone": {
"type": "string",
"minLength": 1,
"maxLength": 64
},
"locale": {
"type": "string",
"minLength": 2,
"maxLength": 35
},
"weekStart": {
"type": "string",
"enum": [
"SUNDAY",
"MONDAY"
]
},
"workingDays": {
"type": "array",
"items": {
"type": "integer",
"minimum": 0,
"maximum": 6
}
},
"workingHours": {
"type": "object",
"properties": {
"start": {
"type": "string"
},
"end": {
"type": "string"
}
},
"required": [
"start",
"end"
],
"additionalProperties": false
},
"logoUrl": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"allowPublicSignup": {
"type": "boolean"
}
},
"additionalProperties": false
}Access control
A call succeeds only when the personal access token's scopes and the holder's role both allow org:settings:write (effective permission = scope ∩ role, default-deny). The tool runs inside the token owner's organization — tenancy is never a parameter.
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).
update_project
Update a project's name / description / icon / color / lead — a RyTask MCP tool for AI agents over the Model Context Protocol (requires the work:write permission).