Accepts a full name (parsed automatically into first/last) or separate first_name and last_name. The company field should be a domain (e.g. acme.com) — URLs are normalized automatically.
linkedin_slug_search does not have batch request capabilities.
Parameters
Field | Type | Required | Description |
|
| ✓ | Must be |
|
| — | Full name, e.g. |
|
| — | First name (used if |
|
| — | Last name (used if |
|
| — | Company domain (e.g. |
|
| — | Alias for |
Name: provide either name or both first_name + last_name.
Company: provide either company or company_domain.
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_slug_search",
"arguments": {
"name": "John Smith", // or first_name + last_name
"first_name": "John", // or name
"last_name": "Smith", // or name
"company": "acme.com", // or company_domain
"company_domain": "acme.com" // or company
}
}
}'
Response
{
"jsonrpc": "2.0",
"id": null,
"result": {
"content": [
{
"type": "text",
"text": "{\"result\":{\"linkedin_url\":\"https://www.linkedin.com/in/john-smith-123\"}}"
}
],
"isError": false
}
}