email_finder
Identify the most probable email address associated with a specific domain and full name using Hunter MCP Server’s integration with Hunter API for business data.
Instructions
Return the most likely email address for a given domain and full name.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| domain | Yes | ||
| full_name | Yes |
Implementation Reference
- main.py:20-24 (handler)The handler function for the 'email_finder' MCP tool. It is registered via the @mcp.tool decorator, accepts domain and full_name parameters, calls the HunterAPIClient's 'email-finder' endpoint, and returns the response.@mcp.tool(description="Return the most likely email address for a given domain and full name.") async def email_finder(domain: str, full_name: str) -> str: async with HunterAPIClient() as client: response = await client.get("email-finder", {"domain": domain, "full_name": full_name}) return response