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
Name | Required | Description | Default |
---|---|---|---|
collection | No | Collection name (default: users) | users |
Yes | User email |
Input Schema (JSON Schema)
{
"properties": {
"collection": {
"default": "users",
"description": "Collection name (default: users)",
"type": "string"
},
"email": {
"description": "User email",
"type": "string"
}
},
"required": [
"email"
],
"type": "object"
}