mcp-job-search
Allows searching for jobs and matching against a resume using the JSearch API, accessed through RapidAPI.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@mcp-job-searchsearch my LinkedIn profile for recent job postings and match them to my resume"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
mcp-job-search
An MCP server that finds recent job postings based on your LinkedIn profile, scores each against your resume, and logs the results — all without logging into or scraping LinkedIn.
Why no LinkedIn scraping? LinkedIn's User Agreement prohibits automated access, and scraping risks your account. Instead this server reads search terms from a LinkedIn export you download, and pulls listings from the JSearch API, which aggregates postings (including LinkedIn's) via Google for Jobs.
How it works
LinkedIn export (CSV or PDF) -> search terms
|
JSearch API (last week)
|
filter to LinkedIn + drop already-seen
|
score vs resume (weighted skill coverage)
|
logs/matches-*.log + reports/job_match-*.htmlRelated MCP server: job-search-mcp
Tools
Tool | What it does |
| Show the search terms derived from your LinkedIn export + the queries that will run. |
| Search all profile queries (default: last week), de-dupe, return new postings, write a log. |
| Like |
| Run a single ad-hoc query. |
| Forget previously-seen jobs so the next run shows everything again. |
Setup (step by step)
1. Install
git clone https://github.com/rajivdatta/mcp-job-search.git
cd mcp-job-search
python -m venv .venv
.venv\Scripts\activate # Windows (use: source .venv/bin/activate on macOS/Linux)
pip install -r requirements.txt2. Get a JSearch API key (free)
Create a RapidAPI account → https://rapidapi.com/auth/sign-up
Open the JSearch API → https://rapidapi.com/letscrape-6bRBa3QguO5/api/jsearch
Click Subscribe to Test (or the Pricing tab) and choose the Basic / Free plan → Subscribe.
On the Endpoints tab, the right-hand code panel shows a header
X-RapidAPI-Key: <your-key>. Copy that key.
3. Create your .env
Copy .env.example to .env and paste your key:
RAPIDAPI_KEY=your-rapidapi-key-here.env is git-ignored — your key never leaves your machine.
4. Provide your LinkedIn profile
Either form works (CSV is more precise; PDF is quicker):
CSV export — LinkedIn → Settings → Data Privacy → Get a copy of your data → include Profile, Positions, Skills → download and extract the ZIP into a folder.
PDF — your profile page → More → Save to PDF. Drop the PDF into a folder.
The server reads your most-recent titles, headline, and top skills to build search queries.
5. Create your config.json
Copy config.example.json to config.json and edit it:
{
"linkedin_export_dir": "C:\\path\\to\\LinkedInExport", // folder with your CSV export or PDF
"resume_path": "C:\\path\\to\\resume.pdf", // .pdf or .txt, used by match_jobs
"location": "Toronto, Ontario, Canada", // appended to each query
"country": "ca", // JSearch 2-letter country code
"date_posted": "week", // today | 3days | week | month
"num_pages": 1, // JSearch pages per query (~10 jobs/page)
"max_queries": 3, // how many profile titles to search
"log_dir": "logs", // where text logs are written
"query_override": [], // set explicit queries to skip profile parsing
"only_linkedin": true, // keep only LinkedIn-sourced postings
"only_new": true // across runs, return only jobs not seen before
}Config field reference
Field | Required | Notes |
| for profile-based search | Folder containing your LinkedIn CSV export or a profile PDF. |
| for | Path to your resume ( |
| recommended | Free-text location appended to each query, e.g. |
| recommended | JSearch country code ( |
| optional | Recency window: |
| optional | Pages fetched per query; each page ≈ 10 jobs. Higher = more results + more API usage. |
| optional | Caps how many profile-derived titles are searched (to limit API calls). |
| optional | Directory for text logs (default |
| optional | A list of explicit query strings. If non-empty, profile parsing is skipped and these are used verbatim. |
| optional |
|
| optional |
|
6. Test it standalone
.venv\Scripts\activate
python -c "import json, server; print(server.get_profile_terms())" # check derived queries
python -c "import json, server; print(server.match_jobs())" # live search + matchOutputs land in logs/ and reports/.
7. Register with your MCP host
Add a server entry pointing at the venv's Python and server.py (see
examples/mcp.json):
{
"mcpServers": {
"job-search": {
"command": "C:\\path\\to\\mcp-job-search\\.venv\\Scripts\\python.exe",
"args": ["C:\\path\\to\\mcp-job-search\\server.py"],
"env": { "RAPIDAPI_KEY": "your-key-or-leave-it-in-.env" }
}
}
}Restart your MCP client, then try: "using job-search, match jobs".
Dedupe across runs
With only_new: true, search_jobs and match_jobs remember every posting they
show (in state/seen_jobs.json) and return only postings you haven't seen on
later runs. Each result reports total_found, new_jobs, and
suppressed_already_seen. Pass only_new=false to a single call to see the full
list once, or call reset_seen_jobs to clear the memory.
Matching (how the score works)
match_jobs detects known skills in the job description and your resume, then
scores weighted coverage = (weighted skills you have that the job asks for) /
(weighted skills the job asks for), with:
core skills weighted higher than peripheral ones,
a denominator floor so sparse ads can't auto-score 100%,
a knockout penalty when a specialized must-have (e.g. SAS, Workday, Salesforce Data Cloud) is required but missing.
Each job reports matched_skills, missing_skills, and knockouts_missing, so
the number is explainable. It's a fast first pass — it does not model seniority
or non-skill credential gates. Tune the skill sets and constants at the top of
match.py.
Output & privacy
logs/— text logs of each search/match runreports/job_match_<date>.html— a cumulative styled match report per day. Re-running on the same day merges in new matches and keeps earlier ones; the latest run's additions are flagged NEW (so a second run never shrinks it).state/seen_jobs.json— the all-time dedupe memorystate/results_<date>.json— today's accumulated matches (backs the cumulative report)
.env, config.json, logs/, reports/, state/, and the export folder are
all git-ignored — nothing personal is committed.
License
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/rajivdatta/mcp-job-search'
If you have feedback or need assistance with the MCP directory API, please join our Discord server