create_user
Admin-only tool to create user accounts with specific roles and permissions. Utilizes user data including email, name, and role for account setup on the MCP Server for Coroot.
Instructions
Create a new user (admin only).
Creates a new user account with specified role and permissions. Requires admin privileges.
Args: user_data: New user information including email, name, role
Input Schema
Name | Required | Description | Default |
---|---|---|---|
user_data | Yes |
Input Schema (JSON Schema)
{
"properties": {
"user_data": {
"additionalProperties": true,
"title": "User Data",
"type": "object"
}
},
"required": [
"user_data"
],
"type": "object"
}