pb_admin_create_user
Create and manage new users securely with admin-level access. Configure email, password, visibility, and verification settings for user accounts in PocketBase MCP Server.
Instructions
Create a new user (admin only)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
Yes | User email address | ||
emailVisibility | No | Whether email is visible to other users | |
name | No | Optional display name | |
password | Yes | User password | |
passwordConfirm | Yes | Password confirmation | |
username | No | Optional username | |
verified | No | Whether the user is verified |
Input Schema (JSON Schema)
{
"properties": {
"email": {
"description": "User email address",
"format": "email",
"type": "string"
},
"emailVisibility": {
"default": false,
"description": "Whether email is visible to other users",
"type": "boolean"
},
"name": {
"description": "Optional display name",
"type": "string"
},
"password": {
"description": "User password",
"minLength": 8,
"type": "string"
},
"passwordConfirm": {
"description": "Password confirmation",
"minLength": 8,
"type": "string"
},
"username": {
"description": "Optional username",
"type": "string"
},
"verified": {
"default": false,
"description": "Whether the user is verified",
"type": "boolean"
}
},
"required": [
"email",
"password",
"passwordConfirm"
],
"type": "object"
}