# Get LinkedIn Jobs in Claude via MCP

**Use case:** 

Use LinkedIn job search as a tool in Claude and other AI agents over MCP: ask for roles by keyword and location, get structured job rows back.

## Input

```json
{
  "keyword": "python developer",
  "location": "New York",
  "remote": false,
  "maxJobs": 25
}
```

## Output

```json
{
  "companyLogo": {
    "label": "Company Logo",
    "format": "string"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "companyName": {
    "label": "Company",
    "format": "string"
  },
  "location": {
    "label": "Location",
    "format": "string"
  },
  "employmentType": {
    "label": "Employment Type",
    "format": "string"
  },
  "salary": {
    "label": "Salary",
    "format": "string"
  },
  "jobUrl": {
    "label": "Job URL",
    "format": "string"
  },
  "summary": {
    "label": "Summary",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [LinkedIn Jobs API | Search Job Listings & Salaries](https://apify.com/johnvc/linkedin-jobs-api) with a specific input configuration. Visit the [Actor detail page](https://apify.com/johnvc/linkedin-jobs-api) to learn more, explore other use cases, and run it yourself.