pb_admin_delete_user
Remove a user account from the PocketBase MCP Server with the specified user ID. Designed exclusively for administrators, this action permanently deletes user data.
Instructions
Delete a user (admin only)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | User ID to delete |
Input Schema (JSON Schema)
{
"properties": {
"id": {
"description": "User ID to delete",
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
}