Skip to main content
Glama

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

NameRequiredDescriptionDefault
domainYes
full_nameYes

Input Schema (JSON Schema)

{ "properties": { "domain": { "title": "Domain", "type": "string" }, "full_name": { "title": "Full Name", "type": "string" } }, "required": [ "domain", "full_name" ], "title": "email_finderArguments", "type": "object" }

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

Other Tools

Related Tools

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