Skip to main content
Glama

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
NameRequiredDescriptionDefault
emailYes
custom_dataNo

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()

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/avivshafir/trykittai-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server