get_profile
Retrieve LinkedIn profile data in JSON format by inputting a LinkedIn profile URL. Extract essential details for analysis or integration using the MCP server's API.
Instructions
Get LinkedIn profile data for a given profile URL.
Args:
linkedin_url: The LinkedIn profile URL.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
linkedin_url | Yes |
Input Schema (JSON Schema)
{
"properties": {
"linkedin_url": {
"title": "Linkedin Url",
"type": "string"
}
},
"required": [
"linkedin_url"
],
"title": "get_profileArguments",
"type": "object"
}