Personal job-search assistant for Claude Desktop: searches real job boards, has Claude score each job 0-100 for fit, and shows a ranked board with one-click triage. MCP App, runs locally, no API keys.
- ✓Open-source license (MIT)
- ✓Actively maintained (<30d)
- ✓Clear description
- ✓Topics declared
- ✓Documented (README)
git clone https://github.com/Servation/job-search-mcp{
"mcpServers": {
"job-search-mcp": {
"command": "node",
"args": ["/path/to/job-search-mcp/dist/index.js"]
}
}
}Resumen de MCP Servers
# job-search-mcp
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](https://modelcontextprotocol.io): a small server Claude Desktop talks to, plus an
inline board that renders right in the chat.
> **Scope:** it's tuned for **US software-engineering roles** (the built-in sources and role filters target
> US tech employers). Other fields or regions will return sparse results.
>
> **Works in:** built and tested for **Claude Desktop**. It should also work in other MCP clients that both
> run a local (stdio) server *and* render MCP App UIs, such as VS Code (Copilot), Cursor, or Goose (untested).
> Remote-only clients (ChatGPT, Claude on web/mobile) can't launch a local server, so they won't work.

---
## What it does
- **Searches real job boards** — LinkedIn plus 8 ATS/job sources (Greenhouse, Lever, Ashby, Workday,
SmartRecruiters, Hacker News, RemoteOK, Remotive), using your target roles and location.
- **Scores each job for *you*** — Claude reads the full description and gives it a 0–100 fit score with
a one-line reason, weighing your skills, years of experience, seniority fit, and the role.
- **Lets you triage fast** — Apply / Skip on each card, or in bulk ("dismiss everything under 60").
- **Remembers** — keeps a running shortlist, a tracker of what you've applied to, and won't show you
the same job twice (for 6 months).
---
## Setup
**1. Tell Claude Desktop about it.** Open your config file:
- Windows: `%APPDATA%\Claude\claude_desktop_config.json`
- macOS: `~/Library/Application Support/Claude/claude_desktop_config.json`
Add this under `"mcpServers"` — `npx` fetches the [published package](https://www.npmjs.com/package/@servation/job-search-mcp)
for you, no cloning or building required:
```json
{
"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.
<details>
<summary>Running from source instead</summary>
```bash
npm install
npm run build
```
Then point the config at this folder's `dist/main.js` instead:
```json
{
"mcpServers": {
"job-search": {
"command": "node",
"args": ["D:\\job-search-mcp\\dist\\main.js"]
}
}
}
```
</details>
---
## How to use it
Just talk to Claude. For example:
- *"Save my profile"* — paste your resume first; Claude pulls out your skills, roles, years, and
location so searches and scoring are tailored to you.
- *"Find backend engineer jobs in California, senior level, posted this week."*
- *"Find low-applicant jobs"* — adds LinkedIn's early-applicant filter.
- *"Dismiss everything under 60."*
- *"Show what I've applied to."*
- *"Re-score the board."*
A typical first run: **save your profile → "find jobs" → Claude scores them and shows the ranked
board → you Apply/Skip.**
---
## The board
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.
---
## Tools (for reference)
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). |
---
## Where your data lives
One JSON file on your machine — no cloud, nothing sent anywhere except the job boards you search:
- Installed: `~/.job-search-mcp/jobs.json`
- Running from source: `./data/jobs.json`
- Override with the `JOB_SEARCH_MCP_DATA` environment variable.
---
## Optional: LinkedIn Premium mode
By default LinkedIn uses its **public guest** endpoints: no login and no account-login risk, and you
already get full job descriptions. Note that automated access still runs from your own IP and is against
LinkedIn's User Agreement even in guest mode, so use it at your discretion. If you want richer/Premium
data, you can use your logged-in account by adding an `env` block to the server config:
```json
"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 `env` block out to
> stay fully safe (guest-only).
---
## How scoring works
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.
## Development
```bash
npm run typecheck # type-check UI + server + harness
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
npm run harness # work on the review UI without Claude Desktop (see harness/)
npm run canary # check every job source is still returning postings
```
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.
Working on the UI, use [`harness/`](harness/). It is a local stand-in for Claude Desktop that renders
the widget against a synthetic job store and a real `ui/*` bridge. Opening `dist/mcp-app.html` in a
browser tab just gets you "Connecting…", and the things most likely to break (link opening, theming,
the post-mount refresh) are all host-mediated, so they only show up with a host on the other end.
If a job source goes dark, `npm run canary` tells you which one. Company slugs rot often, so the fix
usually belongs in the remote slug registry that `updateCompanyDirectoriesFromRegistry()` re-reads at
runtime, rather than in a new release.
Lo que la gente pregunta sobre job-search-mcp
¿Qué es Servation/job-search-mcp?
+
Servation/job-search-mcp es mcp servers para el ecosistema de Claude AI. Personal job-search assistant for Claude Desktop: searches real job boards, has Claude score each job 0-100 for fit, and shows a ranked board with one-click triage. MCP App, runs locally, no API keys. Tiene 2 estrellas en GitHub y su última actualización registrada es del 2026-08-21.
¿Cómo se instala job-search-mcp?
+
Puedes instalar job-search-mcp clonando el repositorio (https://github.com/Servation/job-search-mcp) o siguiendo las instrucciones del README en GitHub. ClaudeWave también te ofrece bloques de instalación rápida en esta misma página.
¿Es seguro usar Servation/job-search-mcp?
+
Nuestro agente de seguridad ha analizado Servation/job-search-mcp y le ha asignado un Trust Score de 95/100 (tier: Verified). Revisa el desglose completo de comprobaciones superadas y flags en esta página.
¿Quién mantiene Servation/job-search-mcp?
+
Servation/job-search-mcp es mantenido por Servation. La última actividad registrada en GitHub es del 2026-08-21, con 0 issues abiertos.
¿Hay alternativas a job-search-mcp?
+
Sí. En ClaudeWave puedes explorar mcp servers similares en /categories/mcp, ordenados por popularidad o actividad reciente.
Despliega job-search-mcp en tu cloud
Lleva este repo a producción en minutos. Cada plataforma genera su propio entorno con variables de entorno editables.
¿Mantienes este repo? Añade un badge a tu README
Pega el badge en tu README de GitHub para mostrar que está auditado por ClaudeWave. Cada badge enlaza de vuelta a esta página y muestra el Trust Score actual.
[](https://claudewave.com/repo/servation-job-search-mcp)<a href="https://claudewave.com/repo/servation-job-search-mcp"><img src="https://claudewave.com/api/badge/servation-job-search-mcp" alt="Featured on ClaudeWave: Servation/job-search-mcp" width="320" height="64" /></a>Más MCP Servers
Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.
User-friendly AI Interface (Supports Ollama, OpenAI API, ...)
An open-source AI agent that brings the power of Gemini directly into your terminal.
Real-time global intelligence dashboard. AI-powered news aggregation, geopolitical monitoring, and infrastructure tracking in a unified situational awareness interface
The fastest path to AI-powered full stack observability, even for lean teams.
🕷️ An adaptive Web Scraping framework that handles everything from a single request to a full-scale crawl!