pb_auth_confirm_password_reset
Confirm and complete a password reset process by providing a valid reset token, new password, and password confirmation using the PocketBase MCP Server's authentication tool.
Instructions
Confirm a password reset with the reset token
Input Schema
Name | Required | Description | Default |
---|---|---|---|
password | Yes | New password (minimum 8 characters) | |
passwordConfirm | Yes | New password confirmation | |
token | Yes | Password reset token from email |
Input Schema (JSON Schema)
{
"properties": {
"password": {
"description": "New password (minimum 8 characters)",
"minLength": 8,
"type": "string"
},
"passwordConfirm": {
"description": "New password confirmation",
"minLength": 8,
"type": "string"
},
"token": {
"description": "Password reset token from email",
"type": "string"
}
},
"required": [
"token",
"password",
"passwordConfirm"
],
"type": "object"
}