Skip to main content
Glama
mrwyndham

PocketBase MCP Server

authenticate_with_otp

Verify user identity using a one-time password for secure access to PocketBase database collections.

Instructions

Authenticate a user with one-time password

Input Schema

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

Implementation Reference

  • src/index.ts:363-381 (registration)
    Registration of the 'authenticate_with_otp' tool in the ListToolsRequestSchema handler's tools array. Includes the tool name, description, and input schema. Note: No corresponding case in the CallToolRequestSchema switch statement, so no handler implementation found.
    { name: 'authenticate_with_otp', description: 'Authenticate a user with one-time password', inputSchema: { type: 'object', properties: { email: { type: 'string', description: 'User email', }, collection: { type: 'string', description: 'Collection name (default: users)', default: 'users' } }, required: ['email'], }, },
  • Input schema definition for the 'authenticate_with_otp' tool, specifying email (required) and optional collection.
    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