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).
Transfer organization ownership to another member (Owner only).
| Required permission | org:transfer |
| Capability ID | orgs.transferOwnership |
| Destructive | Yes — irreversible; agents should confirm before calling |
Parameters
| Parameter | Type | Required | Notes |
|---|---|---|---|
toUserId | string (uuid) | yes | |
demoteSelfTo | OWNER | ADMIN | MEMBER | GUEST | VIEWER | no |
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.
set_member_role
Change a member's role (Admin+; last-owner protected) — a RyTask MCP tool for AI agents over the Model Context Protocol (requires the members:write permission).
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).