Skip to main content

linkedin_to_mobile_phone

Look up the mobile phone number for a LinkedIn profile.

Updated this week

Parameters

Field

Type

Required

Description

params.name

string

βœ“

Must be "linkedin_to_mobile_phone"

params.arguments.linkedin_slug

string

βœ“

LinkedIn slug (e.g. janedoe) or full 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": "linkedin_to_mobile_phone",
"arguments": {
"linkedin_slug": "john-smith-123"
}
}
}'

Response

{
"jsonrpc": "2.0",
"id": null,
"result": {
"content": [
{
"type": "text",
"text": "{\"mobile_phone\":\"5555555555\"}"
}
],
"isError": false
}
}
Did this answer your question?