job-search-mcp
Enables searching justjoin.it for job listings and tracking applications locally with status updates, all via natural language in Claude.
README
Job Search MCP Server
An MCP (Model Context Protocol) server that lets Claude search justjoin.it job postings and track your applications, so you can ask things like "find me new AI Engineer roles in Warsaw" or "what's the status of the application I sent last week" directly in a chat with Claude Desktop or Claude Code.
Why
Built as a hands-on MCP project for my own AI Engineer job search β real tool, real use, not a toy demo.
Tools
| Tool | Description |
|---|---|
search_jobs(keyword, location?) |
Searches justjoin.it listings. Returns title, company, URL, salary, tags, location. location accepts a city name ("Warsaw", "Krakow", ...) or "remote". |
get_job_details(url) |
Fetches a single job offer page and returns a cleaned-up description plus tech stack tags. |
track_application(url, status) |
Saves/updates an application's status locally. status is one of saved, applied, interviewing, rejected, offer. |
list_applications() |
Lists all tracked applications, most recently updated first. |
Application data is stored locally in a JSON file at ~/.job-search-mcp/applications.json β
no database, no external service.
Setup
Requires Node.js 18+.
git clone <this-repo-url>
cd job-search-mcp
npm install
npm run build
This produces dist/index.js, a stdio MCP server.
Connecting to Claude Desktop
Add the server to your Claude Desktop config
(~/Library/Application Support/Claude/claude_desktop_config.json on macOS), replacing the
path below with the absolute path to dist/index.js in your clone (run pwd inside the
project directory to get it):
{
"mcpServers": {
"job-search": {
"command": "node",
"args": ["/absolute/path/to/job-search-mcp/dist/index.js"]
}
}
}
Restart Claude Desktop. The four tools above should appear as available tools (look for the π¨ tools icon in the chat input).
Connecting to Claude Code
claude mcp add job-search -- node /absolute/path/to/job-search-mcp/dist/index.js
Or add it to a project's .mcp.json:
{
"mcpServers": {
"job-search": {
"command": "node",
"args": ["/absolute/path/to/job-search-mcp/dist/index.js"]
}
}
}
Example prompts
- "Find AI Engineer roles in Warsaw"
- "Get me the full details and tech stack for this listing:
<url>" - "Mark that job as applied"
- "What's the status of all my job applications?"
- "Show me everything I've marked as interviewing"
Development
npm run dev # tsc --watch
npm run build # one-off compile
npm start # run the compiled server directly (for manual stdio testing)
npm test # build, then run the test suite (node's built-in test runner)
Tests
Tests run with Node's built-in test runner (node:test) β no extra test framework dependency.
npm test compiles first, then runs everything under dist/**/*.test.js.
justjoin.test.tsβbuildSearchUrlagainst known/unmapped/diacritic city names, andparseOfferCards/parseJobDetailsagainst trimmed-but-verbatim fixtures of real justjoin.it markup (including the<object>logo wrapper that makes the tag-pill parsing heuristic necessary), so the parsing logic is verified without hitting the live site.store.test.tsβtrackApplication/listApplicationsagainst a temp file (via theJOB_SEARCH_STORE_PATHenv var override), so tests never touch your real~/.job-search-mcp/applications.json.
Tricky bits
- justjoin.it has no public API. It's a Next.js app that server-renders offer cards, but
the CSS classes are build-hashed (e.g.
mui-1cks7or) and change on every deploy, so scraping can't rely on fixed selectors.src/justjoin.tsanchors on stable landmarks instead: theoffer_list_offer_title_linkclass, Lucide icon classes (svg.lucide-map-pin,svg.lucide-building), and β for the tag pills, where even sibling/depth assumptions turned out to be unreliable β a structural heuristic that detects "a<div>whose children are all plain-text, childless<div>s," a shape unique to that row on the card. - Job detail pages are easier: they embed proper
schema.org/JobPostingJSON-LD, which is used for title/company/location/salary/employment type. The visible HTML is still used for the description and tech stack, since the JSON-LD description is a single run-on string with no paragraph breaks. - City slugs are Polish-only (
warszawa, notwarsaw) βsearch_jobsmaps common English city names to their Polish slugs. Writing the test for this caught a real bug: PolishΕ(as inΕΓ³dΕΊ) isn't a combining-mark diacritic, soString.normalize("NFD")doesn't strip it the way it doesΓ³orΕΊβ it needs an explicitΕ/Εβl/Lreplacement first. - Salary is often undisclosed. Both tools fall back to
"Not specified"rather than erroring when a listing doesn't list a salary. - Scraping is inherently brittle. If justjoin.it changes its page structure enough to break
these heuristics,
search_jobs/get_job_detailswill return an explicit tool error rather than silently returning garbage.
Roadmap (not yet built)
match_score(job_url)β score a job description against a CV/skills profile via the Anthropic API, with a rationale.- A second job board as a data source, so results aren't tied to justjoin.it alone.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.