Skip to main content
Glama

enrich_email

Retrieve comprehensive contact details from an email address, including name, location, and social profiles, to enhance lead data and verify identities.

Instructions

Return all the information associated with an email address, such as a person's name, location and social handles.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
emailYes

Implementation Reference

  • main.py:27-30 (handler)
    The main handler function that implements the logic for the 'enrich_email' tool by calling the Hunter API's 'people/find' endpoint with the provided email address.
    async def enrich_email(email: str) -> str: async with HunterAPIClient() as client: response = await client.get("people/find", {"email": email}) return response
  • main.py:26-26 (registration)
    Registers the 'enrich_email' tool with the FastMCP server using the @mcp.tool decorator, including the tool description. The input schema is inferred from the function signature (email: str).
    @mcp.tool(description="Return all the information associated with an email address, such as a person's name, location and social handles.")

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