team_update_member_role
Assign or modify a team member's role by specifying the member's address and their new role within Buu AI MCP Server.
Instructions
[PRIVATE] Update the role of a team member.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
member | Yes | Address of the team member | |
newRole | Yes | New role for the team member |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"member": {
"description": "Address of the team member",
"type": "string"
},
"newRole": {
"description": "New role for the team member",
"type": "string"
}
},
"required": [
"member",
"newRole"
],
"type": "object"
}