confirm_verification
Verify user email by validating the provided token and confirming the identity in the specified collection within the PocketBase MCP Server.
Instructions
Confirm email verification with token
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| collection | No | Collection name (default: users) | users |
| token | Yes | Verification token |
Implementation Reference
- src/index.ts:415-433 (schema)Schema definition for the 'confirm_verification' tool, including name, description, and input schema. This tool is listed in the response to ListToolsRequestSchema but lacks a corresponding handler implementation in the CallToolRequestSchema switch statement.{ name: 'confirm_verification', description: 'Confirm email verification with token', inputSchema: { type: 'object', properties: { token: { type: 'string', description: 'Verification token', }, collection: { type: 'string', description: 'Collection name (default: users)', default: 'users' } }, required: ['token'], }, },