Advanced PocketBase MCP Server

confirm_password_reset

Validate and reset user passwords securely by verifying the reset token and confirming the new password matches. Ensures safe authentication updates in the Advanced PocketBase MCP Server.

Input Schema

NameRequiredDescriptionDefault
collectionNoCollection nameusers
passwordYesNew password
passwordConfirmYesConfirm new password
tokenYesReset token

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "collection": { "default": "users", "description": "Collection name", "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" }
ID: 75jh9xb2sg