RyTask docs
MCP tools

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).

View as MarkdownOpen in ChatGPTOpen in Claude

Update organization settings (Owner/Admin).

Required permissionorg:settings:write
Capability IDorgs.settings.update
DestructiveNo

Parameters

ParameterTypeRequiredNotes
timezonestringno
localestringno
weekStartSUNDAY | MONDAYno
workingDaysarray of integerno
workingHoursobjectno
logoUrlstring | nullno
allowPublicSignupbooleanno

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.

On this page