Smithery
read_verification_email
Read the latest email verification code / OTP from the user's Gmail inbox. Use this after smart_login encounters a verification code screen. The user must have previously authorized Gmail access via authorize_email_access. Searches recent emails for verification codes from common senders (Clerk, Auth0, etc).
Remote relievedattention992-smithery/screenshotsmcp
Other tools also called read_verification_email?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"sender": {
"type": "string",
"description": "Optional sender email to filter by (e.g. '[email protected]')"
},
"max_age_minutes": {
"type": "number",
"default": 5,
"description": "Only look at emails from the last N minutes (default: 5)"
},
"subject_keyword": {
"type": "string",
"description": "Optional keyword to search in subject (e.g. 'verification', 'sign in')"
}
}
}