request_password_reset
Initiate password reset process for PocketBase users by sending a reset link to their registered email address.
Instructions
Request password reset
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| Yes | User email | ||
| collection | No | Collection name (default: users) | users |
Implementation Reference
- src/index.ts:434-452 (registration)Registration of the 'request_password_reset' tool in the ListTools response, including its description and input schema definition. Note: No corresponding handler case in the CallToolRequestSchema switch statement, so the tool is not implemented and will throw MethodNotFound when called.{ name: 'request_password_reset', description: 'Request password reset', inputSchema: { type: 'object', properties: { email: { type: 'string', description: 'User email', }, collection: { type: 'string', description: 'Collection name (default: users)', default: 'users' } }, required: ['email'], }, },