confirm_password_reset
Complete password reset process by verifying token and setting new password for user accounts in PocketBase databases.
Instructions
Confirm password reset with token
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| token | Yes | Reset token | |
| password | Yes | New password | |
| passwordConfirm | Yes | Confirm new password | |
| collection | No | Collection name (default: users) | users |
Implementation Reference
- src/index.ts:453-479 (registration)The 'confirm_password_reset' tool is registered in the ListTools response, including its name, description, and input schema.{ name: 'confirm_password_reset', description: 'Confirm password reset with token', inputSchema: { type: 'object', properties: { token: { type: 'string', description: 'Reset token', }, password: { type: 'string', description: 'New password', }, passwordConfirm: { type: 'string', description: 'Confirm new password', }, collection: { type: 'string', description: 'Collection name (default: users)', default: 'users' } }, required: ['token', 'password', 'passwordConfirm'], }, },
- src/index.ts:456-478 (schema)Input schema for the confirm_password_reset tool, defining required parameters: token, password, passwordConfirm, and optional collection.inputSchema: { type: 'object', properties: { token: { type: 'string', description: 'Reset token', }, password: { type: 'string', description: 'New password', }, passwordConfirm: { type: 'string', description: 'Confirm new password', }, collection: { type: 'string', description: 'Collection name (default: users)', default: 'users' } }, required: ['token', 'password', 'passwordConfirm'], },