create-users
Add one or multiple users to your MCP- N8N instance by specifying email and role. Simplify user management with structured input for client ID and user details.
Instructions
Create one or more users in your instance.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| clientId | Yes | ||
| users | Yes |
Input Schema (JSON Schema)
{
"properties": {
"clientId": {
"type": "string"
},
"users": {
"items": {
"properties": {
"email": {
"type": "string"
},
"role": {
"enum": [
"global:admin",
"global:member"
],
"type": "string"
}
},
"required": [
"email"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"clientId",
"users"
],
"type": "object"
}