resume-ats-mcp
Enables Claude Desktop to act as an ATS resume checker: lists resume files and evaluates them against job descriptions, providing formatting audits and keyword match scores.
README
resume-ats-mcp
A local Model Context Protocol server that turns Claude Desktop into an ATS (Applicant Tracking System) resume checker. It plugs in as a connector: Claude calls it as a tool mid-conversation, the server does the parsing/scoring, and Claude narrates the result.
What it does
Two tools, exposed over MCP:
| Tool | Input | Output |
|---|---|---|
list_resume_files |
a directory (optional) | paths to .pdf/.docx/.md/.txt files found there |
evaluate_resume |
a resume (path or pasted text) + an optional job description | a Markdown report: formatting audit + keyword-match score |
Formatting audit — parses the file and flags things that break real ATS parsers: tables, text in headers/footers, embedded images, non-extractable ("scanned image") PDFs, page count.
Keyword match — when a job description is supplied, extracts candidate keywords from it (capitalized phrases, tech tokens like CI/CD or .NET, and frequently-repeated terms) and checks which ones appear in the resume, word-boundary-safe (so CI won't false-match inside "efficient"). Returns a matched/total percentage plus the explicit missing-keyword list.
This is a heuristic, not a certified ATS engine — it's regex/frequency-based, with no LLM call inside the tool itself. The value is in feeding structured, deterministic signal to Claude, which then reasons over it in the conversation.
Architecture
flowchart LR
subgraph Claude Desktop
UI[Chat UI] --> Model[Claude]
end
Model -- "MCP stdio\n(JSON-RPC over stdin/stdout)" --> Server[server.py\nMCPServer instance]
Server --> Parse[pypdf / python-docx\nfile parsing]
Server --> Score[keyword extraction\n+ formatting audit]
Server -- reads --> FS[(Resume files\non disk)]
Claude Desktop launches server.py as a child process and talks to it over stdio using JSON-RPC — this is the "local connector" pattern in MCP, as opposed to a remote HTTP/SSE connector. No network port, no auth: the process only exists while Claude Desktop is running, and only your local machine can reach it.
How the connector is registered
Claude Desktop reads ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) on startup. Adding a mcpServers entry tells it what command to spawn:
{
"mcpServers": {
"resume-ats": {
"command": "/absolute/path/to/mcp-server/.venv/bin/python",
"args": ["/absolute/path/to/mcp-server/server.py"],
"env": {
"RESUME_ATS_DIR": "/absolute/path/to/your/resumes"
}
}
}
}
command/args— point at the venv's Python interpreter directly (not a barepython3), so the server always runs with its own installed dependencies regardless of what's active in your shell.env.RESUME_ATS_DIR— the only machine-specific configuration. It sets the default directorylist_resume_filesbrowses, without hardcoding a personal path into the source code.
After editing the config, fully quit (Cmd+Q) and reopen Claude Desktop — it only reads this file at launch.
Implementation notes
- Built on
mcp[cli]— the official Python MCP SDK.@mcp.tool()decorates a plain function; its type hints and docstring become the tool's schema and description, which is what the model sees when deciding whether/how to call it. stdiois the default transport (mcp.run()), matching what Claude Desktop's local-connector launcher expects.- File parsing is dispatched by extension:
pypdffor.pdf,python-docxfor.docx, plain read for.md/.txt. - Keyword matching uses a lookaround-based regex (
(?<![A-Za-z0-9])keyword(?![A-Za-z0-9])) rather thanstr.count(), to avoid substring false-positives on short tokens.
Setup
git clone <this-repo>
cd mcp-server
python3 -m venv .venv
./.venv/bin/pip install -r requirements.txt
Then add the mcpServers entry above to claude_desktop_config.json, pointing command/args at this checkout and RESUME_ATS_DIR at wherever your resumes live. Restart Claude Desktop.
Testing without Claude Desktop
The MCP SDK ships a client you can drive directly, which is how this was verified during development:
import asyncio
from mcp import ClientSession, StdioServerParameters
from mcp.client.stdio import stdio_client
async def main():
params = StdioServerParameters(command="./.venv/bin/python", args=["server.py"])
async with stdio_client(params) as (read, write):
async with ClientSession(read, write) as session:
await session.initialize()
print(await session.list_tools())
print(await session.call_tool("list_resume_files", {}))
asyncio.run(main())
Limitations
- Keyword extraction is heuristic (regex + frequency), not semantic — it won't recognize "led a team" as matching a JD's "leadership," for example.
- No OCR: image-based/scanned PDFs will correctly be flagged as low-text but can't be scored.
- Single-machine, single-user: this is a local stdio connector, not a hosted service.
License
MIT
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.