RyTask docs
MCP tools

invite_member

Invite a member by email or shareable link, with a pre-assigned role (Admin+) — a RyTask MCP tool for AI agents over the Model Context Protocol (requires the members:invite permission).

View as MarkdownOpen in ChatGPTOpen in Claude

Invite a member by email or shareable link, with a pre-assigned role (Admin+).

Required permissionmembers:invite
Capability IDmembers.invite
DestructiveNo

Parameters

ParameterTypeRequiredNotes
emailstring | nullno
roleOWNER | ADMIN | MEMBER | GUEST | VIEWERyes
workspaceIdstring (uuid) | nullno
expiresInHoursintegerno

Input schema (JSON Schema)

{
  "type": "object",
  "properties": {
    "email": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ]
    },
    "role": {
      "type": "string",
      "enum": [
        "OWNER",
        "ADMIN",
        "MEMBER",
        "GUEST",
        "VIEWER"
      ]
    },
    "workspaceId": {
      "anyOf": [
        {
          "type": "string",
          "format": "uuid"
        },
        {
          "type": "null"
        }
      ]
    },
    "expiresInHours": {
      "type": "integer",
      "minimum": 1,
      "maximum": 8760,
      "default": 168
    }
  },
  "required": [
    "role"
  ],
  "additionalProperties": false
}

Access control

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

On this page