Skip to main content
Glama

email_verifier

Verify email address validity to ensure deliverability and reduce bounce rates for business communications.

Instructions

Return the validity of a given email address.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
emailYes

Implementation Reference

  • main.py:14-18 (handler)
    The handler function for the 'email_verifier' tool, decorated with @mcp.tool which also serves as registration. It verifies the given email address using the HunterAPIClient.
    @mcp.tool(description="Return the validity of a given email address.") async def email_verifier(email: str) -> str: async with HunterAPIClient() as client: response = await client.get("email-verifier", {"email": email}) return response
  • main.py:14-14 (registration)
    Registration of the 'email_verifier' tool via the FastMCP decorator.
    @mcp.tool(description="Return the validity of a given email address.")

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/hunter-io/hunter-mcp'

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