domain_search
Find key email contacts at any company domain to connect with decision-makers and build professional relationships.
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: an async function decorated as an MCP tool that takes a domain string, queries the Hunter API client for domain-search endpoint, and returns the response (top 10 emails).@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