Skip to main content

hem_to_email

Resolve a hashed email (MD5) to the plaintext email address and SHA-256 hash.

Updated this week

Parameters

Field

Type

Required

Description

params.name

string

βœ“

Must be "hem_to_email"

params.arguments.md5

string

βœ“

MD5 hash of the email address (32 hex chars)

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": "hem_to_email",
"arguments": {
"md5": "5d41402abc4b2a76b9719d91101XXXXX"
}
}
}'

Response

{
"jsonrpc": "2.0",
"id": null,
"result": {
"content": [
{
"type": "text",
"text": "{\"md5_email\":\"3018fe3a783fad1db0370ee3faXXXXX\",\"sha256_email\":\"54a0a34d989f1ffe0ee7020ebfa2c250fc6037d45bcb887b18e5790a6bXXXXX\",\"email\":\"[email protected]\"}"
}
],
"isError": false
}
}
Did this answer your question?