Skip to main content

linkedin_slug_search

Search for a LinkedIn profile by person name and company domain.

Updated this week

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

params.name

string

Must be "linkedin_slug_search"

params.arguments.name

string

Full name, e.g. "Tate Blahnik" — parsed into first and last automatically

params.arguments.first_name

string

First name (used if name is not provided)

params.arguments.last_name

string

Last name (used if name is not provided)

params.arguments.company

string

Company domain (e.g. acme.com) or URL — normalized to domain

params.arguments.company_domain

string

Alias for company — company domain or URL

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
}
}
Did this answer your question?