mcp-linkedin
by adhikasp
search_jobs
Copy
Search for jobs on LinkedIn.
:param keywords: Job search keywords
:param limit: Maximum number of job results
:param location: Optional location filter
:return: List of job details
Input Schema
Name | Required | Description | Default |
---|---|---|---|
keywords | Yes | ||
limit | No | ||
location | No | ||
offset | No |
Input Schema (JSON Schema)
{
"properties": {
"keywords": {
"title": "Keywords",
"type": "string"
},
"limit": {
"default": 3,
"title": "Limit",
"type": "integer"
},
"location": {
"default": "",
"title": "Location",
"type": "string"
},
"offset": {
"default": 0,
"title": "Offset",
"type": "integer"
}
},
"required": [
"keywords"
],
"title": "search_jobsArguments",
"type": "object"
}