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
Name | Required | Description | Default |
---|---|---|---|
domain | Yes | ||
full_name | Yes |
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"
}