authenticate_with_otp
Verify user identity using a one-time password (OTP) sent to their email. This tool simplifies secure authentication processes for the PocketBase MCP Server.
Instructions
Authenticate a user with one-time password
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| collection | No | Collection name (default: users) | users |
| Yes | User email |
Implementation Reference
- src/index.ts:363-381 (schema)Schema definition (inputSchema) and registration of the 'authenticate_with_otp' tool in the ListTools response. No handler implementation found in the CallTool switch statement.{ 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'], }, },