Skip to main content

enrich_personal_email

Find the personal email address for a LinkedIn profile.

Updated this week

Parameters

Field

Type

Required

Description

params.name

string

βœ“

Must be "enrich_personal_email"

params.arguments.linkedin_url

string

βœ“

LinkedIn profile URL

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": "enrich_personal_email",
"arguments": {
"linkedin_url": "https://linkedin.com/in/john-smith-123"
}
}
}'

Response

{
"jsonrpc": "2.0",
"id": null,
"result": {
"content": [
{
"type": "text",
"text": "{\"personal_email\":\"john-smith-123@gmail.com\",\"confidence\":0.85,\"source\":\"stub\"}"
}
],
"isError": false
}
}
Did this answer your question?