惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - 聂微东
博客园 - 叶小钗
爱范儿
爱范儿
罗磊的独立博客
Hugging Face - Blog
Hugging Face - Blog
阮一峰的网络日志
阮一峰的网络日志
S
SegmentFault 最新的问题
Apple Machine Learning Research
Apple Machine Learning Research
美团技术团队
T
Tailwind CSS Blog
博客园 - 司徒正美
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
宝玉的分享
宝玉的分享
量子位
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
The Cloudflare Blog
人人都是产品经理
人人都是产品经理
小众软件
小众软件
博客园 - 【当耐特】
博客园 - 三生石上(FineUI控件)
V
Visual Studio Blog
雷峰网
雷峰网
酷 壳 – CoolShell
酷 壳 – CoolShell

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
I built an open-source MCP server that lints a CV against...
Giovanni Siz · 2026-04-28 · via DEV Community

Giovanni Sizino Ennes

Most "ATS scanners" online give you a 0-100 score that's invented. After talking to recruiters at three companies on different ATS platforms, I confirmed: there is no real ATS score. Different parsers extract different fields, and the scoring tools just guess.

So I built a tool that does it differently — and shipped it as an MCP server so any agent (Claude Code, Cursor, Windsurf, Zed, etc.) can use it inline.

Repo: goofypluto999/cv-mirror-mcp
License: MIT.

What it actually does

Three tools exposed over the Model Context Protocol:

  • analyze_cv(path) — full report. Takes a CV (PDF or DOCX), returns per-vendor lint findings across Workday, Greenhouse, Lever, Taleo, iCIMS with severity (error / warn / info) and concrete fixes.
  • lint_for_vendor(path, vendor) — single-vendor lint. Faster when the user only cares about, say, Workday.
  • get_express_url() — returns the URL of a visual web companion (live in-browser parse view) for users who want the side-by-side overlay.

Sample output:

[ERROR] Workday
  - WORKDAY_MULTI_COLUMN: 35% of lines look multi-column. Workday's parser
    reads left-to-right and interleaves both columns into one stream.
    Fix: Convert to single-column layout. Move sidebars (Skills, Tools)
    above or below the main content.

[OK] Greenhouse
  No issues detected by the simulated parser.

[WARN] Lever
  - LEVER_HEADER_FOOTER: Header/footer-like text detected ("Page 1 of 2").
    Lever historically drops content placed in PDF headers/footers.

Enter fullscreen mode Exit fullscreen mode

Why per-vendor instead of a single score

The five top enterprise ATSes do parsing differently:

  • Workday reads PDFs in document-stream order — multi-column layouts get interleaved
  • Greenhouse strips most emoji codepoints; "Projects 🚀" can lose its surrounding context
  • Lever historically drops content in PDF headers/footers
  • Taleo prefers Month-Year date format; ISO dates often fail to populate employment durations
  • iCIMS has the worst multi-column handling — sidebar Skills sections often merge with the line above

A single score collapses all of that into noise. Per-vendor surfaces what each one actually sees.

Stack

  • pdf-parse for PDF text extraction
  • mammoth for DOCX
  • @modelcontextprotocol/sdk for the MCP server transport (stdio)
  • Pure-JS vendor simulators in src/lint.mjs — no AI inference, just heuristics derived from public vendor docs
  • 19 unit tests covering signal extraction and per-vendor rule firing

The vendor rules are intentionally conservative. Every rule cites its public source in docs/vendor-sources.md. I'd rather miss an issue than false-positive on a real job page.

Install + use

npm install -g cv-mirror-mcp

Enter fullscreen mode Exit fullscreen mode

Add to your MCP client config:

{
  "mcpServers": {
    "cv-mirror": {
      "command": "npx",
      "args": ["-y", "cv-mirror-mcp"]
    }
  }
}

Enter fullscreen mode Exit fullscreen mode

Restart the client. Then ask your agent:

Scan my CV at ~/Documents/resume.pdf and tell me what each ATS would do to it.

The agent calls analyze_cv, the lint engine runs locally inside the agent's process — no upload, no telemetry — and the agent surfaces the per-vendor breakdown.

Privacy by architecture

The express path (web tool) runs entirely client-side via pdf.js. The MCP server runs locally inside your agent's process. There is no upload endpoint and no network call from the lint engine. You can verify in the source — it's MIT licensed.

This isn't a marketing claim. The architecture makes the data exfiltration impossible, not just unlikely.

Roadmap

  • [ ] BambooHR simulator
  • [ ] SmartRecruiters simulator
  • [ ] Real-time JD scraping for major ATS public job boards (so the user can also pass a JD URL and get keyword-match findings)
  • [ ] Browser extension that overlays parser output on any job application form

Sister project (paid, optional)

The same team also makes Vantage AI — once your CV is past the parser, the next problem is the application: tailored cover letter, mock interview, fit analysis. That's a paid SaaS, separate from this MCP server. Genuinely free signup with 3 free analyses included if you want to try it.

The MCP server stands alone — it's MIT, it's free, it's not a teaser.

Contributing

PRs welcome. Particularly interested in:

  • More vendor simulators (BambooHR, SmartRecruiters, JazzHR, Recruitee, etc.)
  • Updated rules when vendors change their parsing behaviour (open an issue with the source link)
  • Translations of the lint output

The repo is at goofypluto999/cv-mirror-mcp. Built solo over a couple of weeks.