Update workspace member role
Change a non-owner workspace member between member and admin. Requires owner access.
Behavior
- Read-only hint
- Not declared
- Destructive hint
- Not declared
- Idempotent hint
- Not declared
- Open-world hint
- Not declared
Parameters
| Name | Type | Requirement | Description |
|---|---|---|---|
workspaceId | string | Required | No additional description. |
memberUserId | string | Required | No additional description. |
role | string | Required | No additional description. |
Input JSON Schema
Generated from the registered input schema
{
"type": "object",
"properties": {
"workspaceId": {
"type": "string",
"minLength": 1
},
"memberUserId": {
"type": "string",
"minLength": 1
},
"role": {
"type": "string",
"enum": [
"admin",
"member"
]
}
},
"required": [
"workspaceId",
"memberUserId",
"role"
],
"$schema": "https://json-schema.org/draft/2020-12/schema"
}Call shape
Use an MCP client rather than sending this JSON directly. The client handles protocol negotiation, sessions, and authentication.
Protocol request
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "workspace_member_role_update",
"arguments": {}
}
}