confirm_email_change
Verify and finalize email address changes using a confirmation token and password. Ensures secure user account updates within the specified collection.
Instructions
Confirm email change with token
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| collection | No | Collection name (default: users) | users |
| password | Yes | Current password for confirmation | |
| token | Yes | Email change token |
Implementation Reference
- src/index.ts:499-521 (schema)Input schema and description for the 'confirm_email_change' tool, defined in the list of tools returned by ListToolsRequestSchema handler. Note: No corresponding handler implementation found in the CallToolRequestSchema switch statement.{ name: 'confirm_email_change', description: 'Confirm email change with token', inputSchema: { type: 'object', properties: { token: { type: 'string', description: 'Email change token', }, password: { type: 'string', description: 'Current password for confirmation', }, collection: { type: 'string', description: 'Collection name (default: users)', default: 'users' } }, required: ['token', 'password'], }, },