Parameters
Field | Type | Required | Description |
|
| β | Must be |
|
| β | LinkedIn slug (e.g. |
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_personal_email",
"arguments": {
"linkedin_slug": "john-smith-123"
}
}
}'
Response
{
"jsonrpc": "2.0",
"id": null,
"result": {
"content": [
{
"type": "text",
"text": "{\"emails\":[\"[email protected]\",\"[email protected]\"]}"
}
],
"isError": false
}
}