Parameters
Field | Type | Required | Description |
|
| β | Must be |
|
| β | LinkedIn slug (e.g. |
|
| β | LinkedIn profile URL (alternative to |
|
| β | 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\":\"john-smith-123@example.com\",\"personal_email\":\"john-smith-123@gmail.com\",\"personal_emails\":[\"smith-john-123@gmail.com\"],\"current_industry\":\"Construction\",\"mobile_phone\":\"5555555555\"}"
}
],
"isError": false
}
}