pb_auth_request_password_reset
Initiate a password reset process by sending a reset email to a specified user email address via the PocketBase MCP Server.
Instructions
Request a password reset email for a user
Input Schema
Name | Required | Description | Default |
---|---|---|---|
Yes | Email address to send password reset to |
Input Schema (JSON Schema)
{
"properties": {
"email": {
"description": "Email address to send password reset to",
"format": "email",
"type": "string"
}
},
"required": [
"email"
],
"type": "object"
}