retrieve_contacts
Retrieve email addresses and phone numbers from a LinkedIn profile URL using the Linkd MCP Server. Input the profile URL to access contact details, consuming 1 credit per lookup.
Instructions
Retrieves email addresses and phone numbers for a LinkedIn profile. Each lookup costs 1 credit.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
linkedin_url | Yes | The LinkedIn profile URL to look up. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"linkedin_url": {
"description": "The LinkedIn profile URL to look up.",
"type": "string"
}
},
"required": [
"linkedin_url"
],
"type": "object"
}