job-search
A job-search MCP server that ranks roles, drafts cover letters, and rehearses Q&A answers using a candidate profile, with live listings from five public sources.
README
<h1 align="center">Job Search Dossier</h1>
<p align="center"> A job-search assistant that ranks roles for a candidate, drafts cover letters, and rehearses answers — as a <strong>web app</strong>, a <strong>REST API</strong>, and a connectable <strong>MCP server</strong>.<br/> Runs with <strong>zero API keys</strong> by default; pulls real jobs from five public sources when you want them. </p>
<p align="center"> <a href="https://job-search-mcp-tau.vercel.app"> <img alt="Live Demo" src="https://img.shields.io/badge/▶_Live_Demo-job--search--mcp--tau.vercel.app-0b6e4f?style=for-the-badge&labelColor=0b0b0c"> </a> <a href="https://github.com/VikramKavuri/Jobsearch_using_MCP_server/actions/workflows/ci.yml"> <img alt="CI" src="https://github.com/VikramKavuri/Jobsearch_using_MCP_server/actions/workflows/ci.yml/badge.svg"> </a> <img alt="Tests" src="https://img.shields.io/badge/tests-68_passing-9c7a14?style=flat-square"> <img alt="TypeScript" src="https://img.shields.io/badge/TypeScript-strict-3178c6?style=flat-square"> <img alt="License" src="https://img.shields.io/badge/license-MIT-0b0b0c?style=flat-square"> </p>
▶ Try it now: https://job-search-mcp-tau.vercel.app No sign-up, no keys. Fill a profile, search jobs, generate a cover letter, rehearse a Q&A.
Where it finds jobs
Tick "Include live listings" and it fetches from five keyless sources in parallel, filtered by your profile's role and location, then merges, de-duplicates, ranks, and verifies every link is reachable before showing it.
<p align="center"> <img src="docs/assets/sources.svg" alt="Jobs are pulled from Remotive, The Muse, Arbeitnow, RemoteOK and Jobicy, then ranked and link-checked" width="100%"> </p>
| Source | Coverage | Filters used |
|---|---|---|
| Remotive | Remote roles | keyword search |
| The Muse | Remote and on-site | location |
| Arbeitnow | EU + remote | ranking |
| RemoteOK | Remote roles | role tag |
| Jobicy | Remote roles | region + role tag |
Without live listings, search runs instantly over a bundled, illustrative sample dataset.
Your profile
Everything is keyed off a simple candidate profile. It's saved only in your browser (localStorage) and passed inline to each call — the server stays stateless.
<p align="center"> <img src="docs/assets/profile.svg" alt="Profile fields: full name, title, summary, skills, years of experience, location, education and optional email" width="100%"> </p>
| Field | Used for |
|---|---|
| Full name | cover letters, Q&A voice |
| Desired / current title | job ranking + role filter |
| Professional summary | ranking, letters, Q&A |
| Skills | ranking, fit_score, match reasons |
| Years of experience | letters, Q&A |
| Location | location filter across sources |
| Education | Q&A answers |
| Email (optional) | validated if provided |
The four capabilities — demo vs. live
| Capability | Zero-key demo | With an API key |
|---|---|---|
| Profile | Validate + normalize your profile | same |
| Job search | Rank by TF-IDF cosine → fit_score (0–100) + match_reasons |
+ live multi-source listings |
| Cover letter | Fill a tone-aware template (professional / casual / enthusiastic / formal) | LLM-written letter |
| Q&A | Heuristic answer from your profile | LLM-written answer |
The live deployment runs in Live AI mode via Groq (llama-3.3-70b-versatile), so letters and answers are model-generated. The banner in the UI shows Demo vs Live AI at a glance.
Use it as an MCP server
This app is a remote MCP server — connect any MCP client (Claude Desktop, Claude Code, Cursor, …) and let the model fetch jobs for a candidate.
- Endpoint:
https://job-search-mcp-tau.vercel.app/api/mcp(Streamable HTTP + SSE) - Tools:
profile_upsert,jobs_search,letter_generate,qa_reply
{
"mcpServers": {
"job-search": { "url": "https://job-search-mcp-tau.vercel.app/api/mcp" }
}
}
"Find remote data-engineering roles for someone strong in Python, Spark and SQL" → the model calls
jobs_searchand returns ranked, link-checked jobs with fit scores.
REST API
| Method & path | Body | Returns |
|---|---|---|
GET /api/config |
— | { mode, provider, model, liveAiEnabled } |
POST /api/profile |
profile fields | { profile } (normalized) |
POST /api/jobs |
{ query, profile, limit?, remoteOnly?, location?, live? } |
{ jobs, count, sources, validated } |
POST /api/letter |
{ profile, job:{title,company}, tone? } |
{ text, tone, mode } |
POST /api/qa |
{ question, profile, context? } |
{ answer, mode } |
curl -s -X POST https://job-search-mcp-tau.vercel.app/api/jobs \
-H "Content-Type: application/json" \
-d '{"query":"python data engineer","profile":{"skills":["python","spark","sql"]},"live":true,"limit":5}'
Run locally
npm install
npm run dev # http://localhost:3000
npm test # 68 unit tests (pure functions, no network)
No .env needed — it starts in demo mode. To enable live AI, copy .env.example
to .env.local and set one key (GROQ_API_KEY, ANTHROPIC_API_KEY,
OPENAI_API_KEY, or HF_TOKEN).
Deploy to Vercel
npm i -g vercel
vercel --prod # prompts for login the first time
Vercel auto-detects Next.js. Add an API key under Project → Settings → Environment Variables to enable live AI, then redeploy.
How it's built
app/
page.tsx Web UI: 4 tabs (Profile, Job Search, Cover Letter, Q&A)
api/{config,profile,jobs,letter,qa}/route.ts thin REST adapters
api/[transport]/route.ts MCP endpoint (4 tools) at /api/mcp
lib/
tools/{profile,search,letter,qa}.ts pure capability functions (+ unit tests)
ranking.ts TF-IDF cosine over job text (pure TS)
jobs-source.ts 5 live sources + bundled sample, mappers, dedupe
link-check.ts reachability validation for live job links
config.ts env → real-vs-demo decision (the only env reader)
llm.ts provider abstraction (Groq / OpenAI / Anthropic / HF ↔ demo)
service.ts composition root shared by REST + MCP
The capability functions in lib/tools/* and lib/ranking.ts are pure — no Next,
no env, no network — and unit-tested in isolation. lib/config.ts is the only place
that reads env and decides demo-vs-live; tools receive an injected llm and never
branch on environment. REST and MCP both call lib/service.ts, so the two faces can
never drift.
Deeper dive:
docs/ARCHITECTURE.mdcovers the data flow, the design trade-offs, and an honest "what would change to run this at scale".
Engineering highlights
- One core, three surfaces. Web UI, REST, and MCP are thin adapters over a single
composition root (
lib/service.ts) — zero duplicated logic, so the surfaces can't drift. - Testable by construction. The ranking and the four capabilities are pure functions; 68 deterministic unit tests run offline (Vitest), exercised in CI on every push.
- Resilient by design. Five live sources are fetched in parallel and each degrades to
[]on failure; results are de-duped, ranked, and every link is reachability-checked before it reaches the board — a single dead source or dead link never breaks search. - Pluggable AI. A provider abstraction (
lib/llm.ts) swaps Groq / OpenAI / Anthropic / HF behind one interface, with a deterministic demo path so nothing requires a key. - Honest about scale. The architecture doc names the limitations (in-memory TF-IDF, per-request fetching) and the concrete path to production (caching, embeddings, persistence, observability) — each a localized change thanks to the boundaries above.
Notes
- Attribution: live job data comes from Remotive, The Muse, Arbeitnow, RemoteOK and Jobicy. RemoteOK and The Muse ask that you credit them when displaying results.
- Stateless by design — no database; your profile lives in the browser.
- A clean Vercel rebuild of the original Hugging Face Spaces "Job Search MCP" concept (no torch / faiss / Gradio).
License
MIT © VikramKavuri
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。