verify_email_send
Validate email addresses for accuracy and deliverability by sending verification requests through the trykitt service.
Instructions
verify an email using trykitt.
Args:
email: The email address to verify
custom_data: Optional custom data to associate with the request
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| Yes | |||
| custom_data | No |
Implementation Reference
- server.py:24-38 (handler)The main handler function for the 'verify_email_send' MCP tool. It is decorated with @mcp.tool() for registration and implements the logic to verify an email by sending a realtime POST request to the TryKitt API endpoint /job/verify_email.@mcp.tool() async def verify_email_send(email: str, custom_data: Optional[str] = None) -> Dict: """ verify an email using trykitt. Args: email: The email address to verify custom_data: Optional custom data to associate with the request """ payload = {"email": email, "realtime": True} if custom_data: payload["customData"] = custom_data response = await http_client.post("/job/verify_email", json=payload) return response.json()