domain_search
Find the top 10 email addresses associated with a specific domain to streamline B2B outreach and data management using Hunter MCP Server integration.
Instructions
Return the top 10 emails on a given domain.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| domain | Yes |
Implementation Reference
- main.py:8-12 (handler)The domain_search tool handler function, registered via @mcp.tool decorator. It uses HunterAPIClient to query the 'domain-search' endpoint with the given domain and returns the response.@mcp.tool(description="Return the top 10 emails on a given domain.") async def domain_search(domain: str) -> str: async with HunterAPIClient() as client: response = await client.get("domain-search", {"domain": domain}) return response