Skip to main content
Glama

enrich_email

Retrieve comprehensive details linked to an email address, including name, location, and social media profiles, to enhance contact insights and data enrichment.

Instructions

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

Input Schema

NameRequiredDescriptionDefault
emailYes

Input Schema (JSON Schema)

{ "properties": { "email": { "title": "Email", "type": "string" } }, "required": [ "email" ], "title": "enrich_emailArguments", "type": "object" }

Implementation Reference

  • main.py:26-30 (handler)
    The enrich_email tool handler, registered via @mcp.tool decorator. It fetches person information for the given email using the HunterAPIClient.
    @mcp.tool(description="Return all the information associated with an email address, such as a person's name, location and social handles.") 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-27 (registration)
    Registration of the enrich_email tool with description and input schema defined in the function signature.
    @mcp.tool(description="Return all the information associated with an email address, such as a person's name, location and social handles.") async def enrich_email(email: str) -> str:
  • main.py:27-27 (schema)
    Input schema: email (str), Output: str (JSON response).
    async def enrich_email(email: str) -> str:

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