Skip to main content
Glama
mrwyndham

PocketBase MCP Server

request_password_reset

Initiate password reset process for PocketBase users by sending a reset link to their registered email address.

Instructions

Request password reset

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
emailYesUser email
collectionNoCollection name (default: users)users

Implementation Reference

  • src/index.ts:434-452 (registration)
    Registration of the 'request_password_reset' tool in the ListTools response, including its description and input schema definition. Note: No corresponding handler case in the CallToolRequestSchema switch statement, so the tool is not implemented and will throw MethodNotFound when called.
    {
      name: 'request_password_reset',
      description: 'Request password reset',
      inputSchema: {
        type: 'object',
        properties: {
          email: {
            type: 'string',
            description: 'User email',
          },
          collection: {
            type: 'string',
            description: 'Collection name (default: users)',
            default: 'users'
          }
        },
        required: ['email'],
      },
    },

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