confirm_password_reset
Confirm a password reset by validating a token and setting a new password in the PocketBase MCP Server. Ensures secure password updates for specified collections.
Instructions
Confirm password reset with token
Input Schema
Name | Required | Description | Default |
---|---|---|---|
collection | No | Collection name (default: users) | users |
password | Yes | New password | |
passwordConfirm | Yes | Confirm new password | |
token | Yes | Reset token |
Input Schema (JSON Schema)
{
"properties": {
"collection": {
"default": "users",
"description": "Collection name (default: users)",
"type": "string"
},
"password": {
"description": "New password",
"type": "string"
},
"passwordConfirm": {
"description": "Confirm new password",
"type": "string"
},
"token": {
"description": "Reset token",
"type": "string"
}
},
"required": [
"token",
"password",
"passwordConfirm"
],
"type": "object"
}