get_jobs_raw_metadata
Retrieve raw metadata for specified LinkedIn job IDs, enabling detailed analysis and extraction of job-related information directly within the LinkedIn MCP Server.
Instructions
Gets the job raw metadata for the given job IDs passed as parameter.
Args:
job_ids: List of job IDs to get the job raw metadata for
Returns:
Dict job ids as keys, and the corresponding job metadata information
as values (encoded also as a dictonary)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
job_ids | Yes |
Input Schema (JSON Schema)
{
"properties": {
"job_ids": {
"items": {
"type": "string"
},
"title": "Job Ids",
"type": "array"
}
},
"required": [
"job_ids"
],
"title": "get_jobs_raw_metadataArguments",
"type": "object"
}