RyTask docs
MCP tools

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

View as MarkdownOpen in ChatGPTOpen in Claude

Add a member to a project at a role (ADMIN/MEMBER/VIEWER).

Required permissionwork:write
Capability IDprojects.members.add
DestructiveNo

Parameters

ParameterTypeRequiredNotes
userIdstring (uuid)yes
roleADMIN | MEMBER | VIEWERno
projectIdstring (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.

On this page