Skip to main content

business_email_to_personal_hem

Resolve a business email address to personal hashed email addresses (MD5). Accepts a plaintext email or its MD5 hash.

Updated this week

Parameters

Field

Type

Required

Description

params.name

string

βœ“

Must be "business_email_to_personal_hem"

params.arguments.email

string

β€”

Business email address (will be normalized and hashed)

params.arguments.md5

string

β€”

MD5 hash of the business email (32 hex chars)

Pass either email or md5.

Request

curl --request POST \
--url https://app.moltsets.com/mcp/ \
--header 'Authorization: Bearer YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--data '{
"jsonrpc": "2.0",
"method": "tools/call",
"params": {
"name": "business_email_to_personal_hem",
"arguments": {
"md5": "5d41402abc4b2a76b9719d91101XXXXX", // or email
"email": "[email protected]" // or md5
}
}
}'

Response

{
"jsonrpc": "2.0",
"result": {
"business_email": "[email protected]",
"hems": [
"7b774effe4a349c6dd82ad4f4f2XXXXX"
]
}
}
Did this answer your question?