RyTask docs
MCP tools

transfer_ownership

Transfer organization ownership to another member (Owner only) — a RyTask MCP tool for AI agents over the Model Context Protocol (requires the org:transfer permission).

View as MarkdownOpen in ChatGPTOpen in Claude

Transfer organization ownership to another member (Owner only).

Required permissionorg:transfer
Capability IDorgs.transferOwnership
DestructiveYes — irreversible; agents should confirm before calling

Parameters

ParameterTypeRequiredNotes
toUserIdstring (uuid)yes
demoteSelfToOWNER | ADMIN | MEMBER | GUEST | VIEWERno

Input schema (JSON Schema)

{
  "type": "object",
  "properties": {
    "toUserId": {
      "type": "string",
      "format": "uuid"
    },
    "demoteSelfTo": {
      "type": "string",
      "enum": [
        "OWNER",
        "ADMIN",
        "MEMBER",
        "GUEST",
        "VIEWER"
      ]
    }
  },
  "required": [
    "toUserId"
  ],
  "additionalProperties": false
}

Access control

A call succeeds only when the personal access token's scopes and the holder's role both allow org:transfer (effective permission = scope ∩ role, default-deny). The tool runs inside the token owner's organization — tenancy is never a parameter.

On this page