Skip to main content
Glama
mrwyndham

PocketBase MCP Server

confirm_email_change

Verify and complete email address updates for user accounts using a confirmation token and password validation.

Instructions

Confirm email change with token

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
tokenYesEmail change token
passwordYesCurrent password for confirmation
collectionNoCollection name (default: users)users

Implementation Reference

  • src/index.ts:500-521 (registration)
    Registration of the 'confirm_email_change' tool in the tools.setTools array, including name, description, and input schema. Note: No corresponding handler case in the switch statement.
      name: 'confirm_email_change',
      description: 'Confirm email change with token',
      inputSchema: {
        type: 'object',
        properties: {
          token: {
            type: 'string',
            description: 'Email change token',
          },
          password: {
            type: 'string',
            description: 'Current password for confirmation',
          },
          collection: {
            type: 'string',
            description: 'Collection name (default: users)',
            default: 'users'
          }
        },
        required: ['token', 'password'],
      },
    },
  • Input schema definition for the 'confirm_email_change' tool, specifying parameters: token (required), password (required), collection (optional, default 'users').
    inputSchema: {
      type: 'object',
      properties: {
        token: {
          type: 'string',
          description: 'Email change token',
        },
        password: {
          type: 'string',
          description: 'Current password for confirmation',
        },
        collection: {
          type: 'string',
          description: 'Collection name (default: users)',
          default: 'users'
        }
      },
      required: ['token', 'password'],
    },

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