Server data from the Official MCP Registry
Claude searches real job boards, scores each job 0-100 for fit, and shows a ranked board.
Claude searches real job boards, scores each job 0-100 for fit, and shows a ranked board.
This is a well-designed job search MCP server with appropriate authentication handling, no malicious patterns, and permissions that match its stated purpose. The server uses public job board APIs (no API keys required by default), stores data locally, and includes optional authenticated LinkedIn support via environment variables. Minor code quality observations around error handling breadth and logging do not significantly impact security. Supply chain analysis found 5 known vulnerabilities in dependencies (0 critical, 2 high severity). Package verification found 1 issue.
4 files analyzed · 10 issues found
Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.
This plugin requests these system permissions. Most are normal for its category.
Set these up before or after installing:
Environment variable: JOB_SEARCH_MCP_DATA
Environment variable: LINKEDIN_LI_AT
Environment variable: LINKEDIN_JSESSIONID
Add this to your MCP configuration file:
{
"mcpServers": {
"io-github-servation-job-search-mcp": {
"env": {
"LINKEDIN_LI_AT": "your-linkedin-li-at-here",
"JOB_SEARCH_MCP_DATA": "your-job-search-mcp-data-here",
"LINKEDIN_JSESSIONID": "your-linkedin-jsessionid-here"
},
"args": [
"-y",
"@servation/job-search-mcp"
],
"command": "npx"
}
}
}From the project's GitHub README.
A personal job-search assistant for Claude Desktop. You ask Claude to find jobs; it searches the real job boards, scores each one 0–100 for how well it fits you, and shows them on a ranked board you can triage with one click. Everything runs locally — no API keys, no accounts required.
It's an MCP App: a small server Claude Desktop talks to, plus an inline board that renders right in the chat.

1. Tell Claude Desktop about it. Open your config file:
%APPDATA%\Claude\claude_desktop_config.json~/Library/Application Support/Claude/claude_desktop_config.jsonAdd this under "mcpServers" — npx fetches the published package
for you, no cloning or building required:
{
"mcpServers": {
"job-search": {
"command": "npx",
"args": ["-y", "@servation/job-search-mcp"]
}
}
}
2. Fully quit and reopen Claude Desktop (on Windows, quit it from the system tray — closing the window isn't enough). That's it.
npm install
npm run build
Then point the config at this folder's dist/main.js instead:
{
"mcpServers": {
"job-search": {
"command": "node",
"args": ["D:\\job-search-mcp\\dist\\main.js"]
}
}
}
Just talk to Claude. For example:
A typical first run: save your profile → "find jobs" → Claude scores them and shows the ranked board → you Apply/Skip.
The board is a running shortlist. A job stays on it until you Apply (moves to your tracker) or Skip (hidden for good). New searches automatically skip jobs already on the board, in your tracker, dismissed, or shown in the last 6 months — so you never see the same listing twice in a row.
Click Applied or Skip on a card, or ask Claude to do it. Triaged in the widget, it sticks.
You rarely call these by name — Claude picks the right one — but here's what's under the hood:
| Tool | What it does |
|---|---|
find_jobs | Search the boards for your roles/location (with optional filters: seniority, type, recency, remote, salary, applicants, source). |
evaluate_jobs | Claude scores the found jobs 0–100 for fit (runs automatically after a search). |
show_board | Display the ranked board (or your saved tracker). |
set_status | Apply / Skip / save a single job (also the card buttons). |
bulk_status | Triage many at once by score or source, e.g. dismiss everything under 60. |
whats_promising | List the current board as text (all scored jobs + anything still unscored). |
review_saved | Your tracker — jobs you've saved or applied to. |
rescore_board | Re-score every job on the board from scratch. |
clear_jobs | Declutter: clear unscored leftovers or the whole board (never touches applied/dismissed). |
save_profile | Save your resume profile (drives search + scoring). |
One JSON file on your machine — no cloud, nothing sent anywhere except the job boards you search:
~/.job-search-mcp/jobs.json./data/jobs.jsonJOB_SEARCH_MCP_DATA environment variable.By default LinkedIn uses its public guest endpoints — no login, no risk to your account, and you
already get full job descriptions. If you want richer/Premium data, you can use your logged-in account
by adding an env block to the server config:
"job-search": {
"command": "npx",
"args": ["-y", "@servation/job-search-mcp"],
"env": {
"LINKEDIN_LI_AT": "<your li_at cookie>",
"LINKEDIN_JSESSIONID": "ajax:1234567890123456789"
}
}
Get both cookies from a logged-in linkedin.com tab → DevTools → Application → Cookies.
⚠️ Heads up: this is against LinkedIn's Terms of Service and can get your account flagged or restricted. The cookies also expire about monthly and LinkedIn's internal endpoints change without notice. If anything fails it falls back to guest mode automatically. Leave the
envblock out to stay fully safe (guest-only).
Claude (the host model) does the scoring directly — it reads each description and judges fit, which is
well-calibrated. A deterministic formula (computeMatchScore in scoring.ts) is kept as a fallback for
anyone running a weaker local model that tends to over-rank everything; it's not active by default.
npm run typecheck # type-check UI + server
npm run build # build the UI bundle (vite single-file) + compile the server (tsc)
npm run serve:stdio # run the server from source (tsx) for local testing
The server is stdio-only (main.ts → server.ts); the UI is a React app bundled to a single inlined
HTML file (src/mcp-app.tsx → dist/mcp-app.html) that the server serves as a ui:// resource.
Be the first to review this server!
by Modelcontextprotocol · Developer Tools
Web content fetching and conversion for efficient LLM usage
by Modelcontextprotocol · Developer Tools
Read, search, and manipulate Git repositories programmatically
by Toleno · Developer Tools
Toleno Network MCP Server — Manage your Toleno mining account with Claude AI using natural language.