Skip to main content

linkedin_to_business_profile

Look up a full business profile by LinkedIn slug or URL, including company, title, and firmographic data.

Updated this week

Parameters

Field

Type

Required

Description

params.name

string

βœ“

Must be "linkedin_to_business_profile"

params.arguments.linkedin_slug

string

β€”

LinkedIn slug (e.g. janedoe) or full profile URL

params.arguments.linkedin_url

string

β€”

LinkedIn profile URL (alternative to linkedin_slug)

params.arguments.include_mobile_phone

boolean

β€”

Also look up mobile phone number (costs an additional query)

Pass either linkedin_slug or linkedin_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_business_profile",
"arguments": {
"linkedin_slug": "john-smith-123", // or linkedin_url
"linkedin_url": "https://linkedin.com/in/john-smith-123", // or linkedin_slug
"include_mobile_phone": true
}
}
}'

Response

{
"jsonrpc": "2.0",
"id": null,
"result": {
"content": [
{
"type": "text",
"text": "{\"title\":\"Senior Associate - Technical Director\",\"company\":{\"name\":\"acme.com\",\"revenue\":\"1200000000\",\"industry\":\"Construction\",\"website_url\":\"http://acme.com\",\"linkedin_url\":\"https://linkedin.com/company/acme\"},\"country\":\"United States\",\"full_name\":\"John Smith\",\"last_name\":\"Smith\",\"seniority\":\"Senior\",\"first_name\":\"John\",\"linkedin_url\":\"https://linkedin.com/in/john-smith-123\",\"business_email\":\"[email protected]\",\"personal_email\":\"[email protected]\",\"personal_emails\":[\"[email protected]\"],\"current_industry\":\"Construction\",\"mobile_phone\":\"5555555555\"}"
}
],
"isError": false
}
}
Did this answer your question?