job-search-mcp
An MCP server that retrieves resume/experience evidence relevant to a job description via vector RAG, and tracks fit-analysis results in a configurable tracking store (Notion or SQLite), with tools like match_job, push_to_tracker, and list_applications.
README
job-search-mcp
An MCP server that retrieves resume/experience evidence relevant to a job description via RAG, and tracks fit-analysis results in a tracking store.
Analysis and tracking only — this project does not generate or tailor
resumes. See docs/adr/0007-analysis-only-v1-no-resume-generation.md.
Design
The server is adapter-based rather than locked to any specific vendor. Three interfaces define the boundaries:
VectorStore(src/job_search_mcp/vector_store/) — embedded resume/experience chunk storage and similarity search. Default implementation:QdrantVectorStore(Cloud or self-hosted-in-Docker — a connection detail, not an interface difference).TrackingStore(src/job_search_mcp/tracking_store/) — persistence for fit-analysis results.NotionTrackingStoreis the store the server wires up today (see Setup).SQLiteTrackingStoreis a zero-dependency local implementation that also exists but isn't yet selectable via config — see Roadmap. Both read a user-declaredtracking_schema.yaml(docs/adr/0011-configurable-tracking-field-schema.md) for which fields to write and read, rather than a mapping hardcoded to one specific Notion database.ResumeSource(src/job_search_mcp/resume_source/) — retrieval of resume/experience content. Implementation:FileResumeSource(local text/markdown, PDF, and DOCX parsing).
Rationale for each of these decisions is recorded in docs/adr/.
Embeddings (src/job_search_mcp/embeddings/) default to a local
SentenceTransformersEmbedder (all-MiniLM-L6-v2) — see
docs/adr/0006-embeddings-choice-open.md.
Stack
- Python, dependency management via
uv justas the task runner (seejustfile)- Qdrant (vector store), Notion (tracking store)
- MCP Python SDK for the server itself
MCP tools
-
match_job(job_description, source_url=None)— embeds the job description, retrieves the most relevant resume/experience chunks from the configuredVectorStore, and returns a heuristicretrieval_score(top-match cosine similarity) plus the retrieved evidence. Namedretrieval_score, notfit_score— it's a retrieval confidence signal, not a fit judgment, and the two can diverge (seedocs/adr/0008-resume-chunking-strategy.md). It does not synthesize a fit verdict itself — no internal LLM call — so the calling assistant is expected to reason over the returned evidence, applying thejob-fit://rubricresource returned alongside it.Note:
docs/adr/0009-caller-agnostic-reversal.mdcalls for this judgment step to move server-side into a newevaluate_fittool, so fit-bucket assignment isn't left to whichever assistant happens to callmatch_job. That tool is designed (docs/evaluate_fit_schema.md,docs/adr/0010-layer-split-design-evaluate-fit.md) but not yet implemented — today, the calling assistant still constructs theFitVerdictpassed topush_to_trackeritself. -
push_to_tracker(job_id, verdict, dry_run=False)— writes aFitVerdict(seedocs/evaluate_fit_schema.md) to the configuredTrackingStore. Updates an existing tracked row by Notion page ID — never creates a new row or searches for one. Only the fields yourtracking_schema.yamlmarks tool-populated are touched; every manual field on the row (company, comp range, source, work arrangement, etc.) is left as-is (docs/adr/0011-configurable-tracking-field-schema.md). A misconfigured field (e.g. anotion.propertythat no longer exists on your database) is skipped with a warning rather than failing the whole write — check the result'swarnings.dry_run=Truereturns the mapped properties payload without writing. -
list_applications(status=None)— lists tracked jobs from the configuredTrackingStore, each withjob_idplus whatever tool-populated fields your schema declares (typicallystatus,fit_rating,notes). Passstatusto filter to an exact (case-sensitive) match, e.g."Not yet applied"— useful for questions like "what am I waiting to hear back on" without opening Notion.
Resume text is split into light, section/role-sized chunks before
embedding (src/job_search_mcp/chunking.py) rather than embedded whole —
see docs/adr/0008-resume-chunking-strategy.md.
Tracking field schema
push_to_tracker and list_applications don't hardcode a field list —
they read tracking_schema.yaml (path overridable via
TRACKING_SCHEMA_PATH, gitignored like .env; copy
tracking_schema.example.yaml to get started). Each field is declared as
either:
manual: true— the tool never reads or writes it (company, comp range, source, work arrangement, ...). Documentation only.derived_from: <status_fixed | fit_rating_from_bucket | key_notes>— a tool-populated field, computed from aFitVerdict. These three are the only values aFitVerdictcan currently be turned into; the schema says which of them your tracker wants and under what property/column name, not how to compute them.
A tool-populated field also needs a backend location:
notion.property/notion.type for Notion, sqlite.column for
SQLiteTrackingStore (which only tracks fields that declare a
sqlite.column at all — it has no concept of Notion's manual fields).
Someone with a simpler tracker than the author's just lists fewer
fields. A misconfigured individual field (an unrecognized
derived_from, or a notion.property that doesn't exist on the live
database) is warned about and skipped rather than failing the whole
write; only an unreadable or structurally invalid schema file itself is
a hard failure. See docs/adr/0011-configurable-tracking-field-schema.md
for the full design.
Setup
just install- Copy
.env.exampleto.envand fill in your Qdrant and Notion connection details. - Copy
tracking_schema.example.yamltotracking_schema.yamland edit the field list to match your own tracker (see Tracking field schema, above). - Ingest a resume:
uv run python -m job_search_mcp.ingest path/to/resume.pdf - Register with Claude Code (project-scoped):
claude mcp add job-search-mcp -- uv run --directory "$(pwd)" job-search-mcp - In a Claude Code session in this project, ask it to call
match_jobwith a real job description, thenpush_to_trackeragainst a row you already track in Notion.
Roadmap
Shipped: match_job (retrieval), push_to_tracker and list_applications
against NotionTrackingStore, the YAML-configurable tracking field
schema (docs/adr/0011-configurable-tracking-field-schema.md), and the
ingestion pipeline (ResumeSource → chunking → embedding → VectorStore).
Planned next:
evaluate_fit— move fit-bucket judgment (the rubric indocs/job_fit_scoring_algorithm.md) inside the server via an internal LLM call, so it no longer depends on the calling assistant applying the rubric itself (docs/adr/0009-caller-agnostic-reversal.md,docs/adr/0010-layer-split-design-evaluate-fit.md)- Wire
SQLiteTrackingStoreup as a selectable backend (it exists, reads the same tracking schema, and is tested, but the server currently always constructsNotionTrackingStore) - Google Drive-backed
ResumeSourceimplementation - Revisit the embeddings choice if local sentence-transformers quality
proves insufficient (
docs/adr/0006-embeddings-choice-open.md)
Development
just install # uv sync
just test # uv run pytest (unit tests only; integration needs QDRANT_URL)
just lint # uv run ruff check .
just run # uv run job-search-mcp (stdio MCP server)
CI (.github/workflows/ci.yml) runs lint and the unit test suite on
every push to main and every pull request.
推荐服务器
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 模型以安全和受控的方式获取实时的网络信息。