ResumePilot MCP
Enables tracking and searching application-related emails through Gmail using OAuth.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@ResumePilot MCPAnalyze this job description and tailor my resume for it."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
ResumePilot MCP
A scalable Universal Job Application MCP server for Claude Desktop.
You give Claude one master resume. ResumePilot then parses it, builds a reusable profile, analyzes job descriptions against it, computes job-specific ATS/match scores, generates tailored resumes that never invent information, tracks every application in a local database, and produces a final PDF report with per-application tracking pages.
Phase 1 (this release) is a complete, tested, fully-local foundation. You paste a job description and the entire pipeline runs end-to-end — no external job site required. Global job search, application automation and email tracking are later phases that slot into the same adapter architecture. See
docs/ARCHITECTURE.md.
What it will not do
❌ Never invents skills, experience, education, certifications or metrics.
❌ Never stores LinkedIn/Naukri/other passwords or OTPs.
❌ Never bypasses CAPTCHA, 2FA, bot protection or authentication.
❌ Never auto-submits to arbitrary websites (Phase 1 prepares; you submit).
If a required skill can't be verified from your material, ResumePilot reports "Required skill not verified from the user's profile." — it will not add it.
Related MCP server: resume-tailor-mcp-server
Requirements
Node.js ≥ 18.18
Claude Desktop (for MCP usage)
Install & build
git clone <your-fork-url> resumepilot-mcp
cd resumepilot-mcp
npm install
npm run build
cp .env.example .env # optional — sensible defaults otherwiseTry it without Claude (offline demo)
Runs the full pipeline through the same tools Claude calls, in a temp folder:
npm run demoYou'll see original→optimized ATS scores, a generated PDF report and HTML tracking pages.
Run the tests
npm test40 tests cover parsing, scoring, the "never invent" guarantee, optimization, tracking, reporting and the end-to-end tool pipeline.
Download (Claude Desktop extension)
Grab the ready-to-install extension from the Releases page:
Download | For |
| The Claude Desktop extension — works on Windows, macOS and Linux (pure-JavaScript, no native binary). Drag it into Claude Desktop → Settings → Extensions. |
| One-click build-from-source installer for Windows. |
| One-click build-from-source installer for macOS. |
| Build-from-source installer for Linux. |
Just want the extension? Download resumepilot.mcpb, open Claude Desktop →
Settings → Extensions, drag the file in, set your data folder, toggle it On.
Install into Claude Desktop
Two options — full walkthrough in docs/INSTALL.md:
One-click Desktop Extension:
npm run bundleproducesresumepilot.mcpb; drag it into Claude Desktop → Settings → Extensions, set your data folder, toggle On. (The bundle embeds a native SQLite binary, so build it on your own OS — one command — for macOS/Windows.)Manual MCP config: build from source and add a
mcpServersentry.
Connect to Claude Desktop (manual config)
Build:
npm run build(producesdist/src/index.js).Open your Claude Desktop config file:
macOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonWindows:
%APPDATA%\Claude\claude_desktop_config.json
Add the server (see
docs/claude_desktop_config.example.json), using absolute paths:{ "mcpServers": { "resumepilot": { "command": "node", "args": ["/ABSOLUTE/PATH/TO/resumepilot-mcp/dist/src/index.js"], "env": { "RESUMEPILOT_DATA_DIR": "/ABSOLUTE/PATH/TO/your-private-data", "ATS_TARGET_SCORE": "90" } } } }Fully quit and reopen Claude Desktop. ResumePilot's tools appear under the tools (🔌) menu.
Use it
Just say:
“Start my ResumePilot job application process.”
Claude understands the workflow and will:
Ask for your master resume →
upload_master_resume(give it the file path).Parse it and ask only for missing info →
analyze_master_resume→setup_user_profile.Take a job description you paste →
analyze_job(shows original ATS + gaps).Build a tailored resume →
optimize_resume_for_job(original vs optimized ATS, PDF + DOCX).Prepare the application →
generate_application_profile→prepare_application.Record it →
apply_to_job(Phase 1: you submit; Claude marks it APPLIED on your confirmation).Track it →
update_application_tracking/search_application_emails.Produce the final report →
generate_application_report(PDF + tracking pages).
Example prompts
"Here's my resume:
/Users/me/Documents/resume.pdf. Set up my profile.""Analyze this job against my resume: <paste JD>"
"Optimize my resume for application 1 and show me the before/after ATS score."
"What changed, and what couldn't you verify?"
"Generate my application report."
Configuration (.env)
Variable | Default | Meaning |
|
| Where your private data lives (git-ignored) |
|
| Target ATS score (never guaranteed, never stuffed) |
|
| Min match score to recommend applying |
|
| (Phase 2+) max jobs per run |
|
| (Phase 2+) bounded worker concurrency |
|
|
|
Security & privacy
Your data stays on your machine under
RESUMEPILOT_DATA_DIR(git-ignored).No third-party passwords or OTPs are ever stored; future integrations use official OAuth/session flows with tokens kept out of logs.
Logs go to stderr only and redact secret-looking values.
Delete your data any time by removing the data directory.
Project layout
src/
├── index.ts, server.ts # MCP stdio server + tool registration
├── context.ts # composition root
├── tools/ # 17 MCP tools (thin, Zod-validated)
├── services/ # parsing, scoring, optimization, tracking, reports
├── providers/ # jobs / applications / email adapters (+ registries)
├── database/ # SQLite schema + repository
├── models/ # Zod schemas & types
└── utils/ # config, logger, text/keyword processing, ids
tests/ # vitest suite (40 tests)
docs/ # ARCHITECTURE.md, Claude Desktop config
scripts/demo.ts # offline end-to-end demoRoadmap
Phase 2: generic search adapter, worker pool, dedup, ranking, ≤1,000 jobs · Phase 3: supported job-source integrations · Phase 4: application adapters · Phase 5: Gmail tracking (OAuth) · Phase 6: hosted tracking UI + packaging.
License
MIT — see LICENSE.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceEnables Claude to intelligently query and analyze your resume using RAG technology. Supports skill matching against job requirements and answering questions about your professional background from locally stored resume files.MIT
- FlicenseNot gradedqualityCmaintenanceHelps job seekers tailor their resume and generate cover letters against a specific job posting, powered by Claude.
- AlicenseNot gradedqualityCmaintenanceEnables 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.MIT
- FlicenseNot gradedqualityCmaintenanceEnables Claude to parse CVs, search job boards (Remotive, Arbeitnow, Adzuna, Greenhouse/Lever), tailor resumes and cover letters, and prepare application packages with direct apply links—without ever auto-submitting. It runs 100% locally and free, storing jobs and applications as JSON files.
Related MCP Connectors
AI job search MCP — fact-checked jobs, application tracker, alerts. ChatGPT, Claude, Cursor.
Generate PDFs from templates via AI chat. Works with Claude, ChatGPT, Cursor, and any MCP client.
Persistent context for Claude. Your AI always knows your projects and next actions across sessions.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/rajeshaipython-stack/auto-apply-resume-pilot'
If you have feedback or need assistance with the MCP directory API, please join our Discord server