# Get LinkedIn Profile Data in Claude via MCP

**Use case:** 

Use LinkedIn profiles as a tool in Claude and other AI agents over MCP: look up a profile URL and get structured data in-conversation.

## Input

```json
{
  "profileUrls": [
    "https://www.linkedin.com/in/satyanadella"
  ]
}
```

## Output

```json
{
  "result_type": {
    "label": "Result Type",
    "format": "string"
  },
  "name": {
    "label": "Name",
    "format": "string"
  },
  "headline": {
    "label": "Headline",
    "format": "string"
  },
  "currentCompany": {
    "label": "Current Company",
    "format": "string"
  },
  "location": {
    "label": "Location",
    "format": "string"
  },
  "followers": {
    "label": "Followers",
    "format": "integer"
  },
  "publicUrl": {
    "label": "Public URL",
    "format": "string"
  },
  "summary": {
    "label": "Summary",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [LinkedIn Profile API | Scrape Public Profile Data](https://apify.com/johnvc/linkedin-profile-api) with a specific input configuration. Visit the [Actor detail page](https://apify.com/johnvc/linkedin-profile-api) to learn more, explore other use cases, and run it yourself.