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