create_lead
Create a lead in your account by submitting an email address. Part of the Hunter MCP Server, integrating Hunter API with LLM providers for B2B data management.
Instructions
Create a lead in user's account.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| Yes |
Implementation Reference
- main.py:38-42 (handler)The handler function for the create_lead tool. It uses HunterAPIClient to POST the email to the 'leads' endpoint and returns the response.@mcp.tool(description="Create a lead in user's account.") async def create_lead(email: str) -> str: async with HunterAPIClient() as client: response = await client.post("leads", {"email": email}) return response