Skip to main content
Glama
mrwyndham

PocketBase MCP Server

confirm_password_reset

Confirm a password reset by validating a token and setting a new password in the PocketBase MCP Server. Ensures secure password updates for specified collections.

Instructions

Confirm password reset with token

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
collectionNoCollection name (default: users)users
passwordYesNew password
passwordConfirmYesConfirm new password
tokenYesReset token

Implementation Reference

  • src/index.ts:453-479 (registration)
    Registration of the 'confirm_password_reset' tool, including its name, description, and input schema in the tools list provided to the MCP server.
    { 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 definition for the 'confirm_password_reset' tool, specifying parameters like 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