add_project_member
Add a member to a project at a role (ADMIN/MEMBER/VIEWER) — a RyTask MCP tool for AI agents over the Model Context Protocol (requires the work:write permission).
Add a member to a project at a role (ADMIN/MEMBER/VIEWER).
| Required permission | work:write |
| Capability ID | projects.members.add |
| Destructive | No |
Parameters
| Parameter | Type | Required | Notes |
|---|---|---|---|
userId | string (uuid) | yes | |
role | ADMIN | MEMBER | VIEWER | no | |
projectId | string (uuid) | yes |
Input schema (JSON Schema)
{
"type": "object",
"properties": {
"userId": {
"type": "string",
"format": "uuid"
},
"role": {
"type": "string",
"enum": [
"ADMIN",
"MEMBER",
"VIEWER"
],
"default": "MEMBER"
},
"projectId": {
"type": "string",
"format": "uuid"
}
},
"required": [
"userId",
"projectId"
],
"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.
add_label_to_issue
Attach a label to a work item (by id or name; create-on-capture) — a RyTask MCP tool for AI agents over the Model Context Protocol (requires the work:write permission).
add_subtask
Create a sub-task under a work item (inherits its project; cycle/depth checked) — a RyTask MCP tool for AI agents over the Model Context Protocol (requires the work:write permission).