Skip to main content
Glama
mrwyndham

PocketBase MCP Server

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
NameRequiredDescriptionDefault
tokenYesReset token
passwordYesNew password
passwordConfirmYesConfirm new password
collectionNoCollection 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'], }, },
  • 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'], },

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/mrwyndham/pocketbase-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server