mcp-resume
Store your CV facts once. Then say "tailor my resume to this posting and write the cover letter" and get two real.docx files: a resume whose bullets are reordered by relevance to the posting, trimmed to fit the page count youasked for, with the posting's keywords in bold where you actually have them -- and a one-page cover letter thatstates nothing you did not put in your profile. Where a fact is missing, the letter leaves a bracketed prompt like[add: metric] instead of inventing a number. It also reads an existing resume .docx back into the profile shape,exports markdown for an ATS box, and writes printable HTML. Everything runs locally: no upload, no account, nonative dependency.

A resume that fits the page and a cover letter that cannot lie about you.
60-second install
npm publish for @theluckystrike/mcp-resume is pending. Until then, the .mcpb one-click bundle or a clone+buildis the working path -- both are verified below.
One-click (.mcpb): download resume.mcpb from the latest release and double-click it in Claude Desktop:https://github.com/theluckystrike/mcp-servers/releases/latest
Claude Desktop (claude_desktop_config.json):
{
"mcpServers": {
"resume": {
"command": "npx",
"args": ["-y", "@theluckystrike/mcp-resume"]
}
}
}
Claude Code:
claude mcp add resume -- npx -y @theluckystrike/mcp-resume
Cursor (.cursor/mcp.json):
{
"mcpServers": {
"resume": {
"command": "npx",
"args": ["-y", "@theluckystrike/mcp-resume"]
}
}
}
The npx form above starts working the moment the package is published. Until then, use the .mcpb bundle above, orbuild from source with exactly these three commands:
git clone https://github.com/theluckystrike/mcp-servers.git && cd mcp-servers
npm install
npm run build -w packages/mcp-license -w servers/docx -w servers/resume
Then point your client's command at node with one arg: the absolute path to servers/resume/dist/index.js.servers/docx is in that build list because this server shares the document engine withmcp-docx rather than carrying a second copy of it.
To run in Pro mode set MCP_LICENSE_KEY in the same config block, or call license_activate once with your key.
Tools
| Tool | What it does |
|---|---|
profile_set |
Store the facts every output is built from: name, email, phone, location, links, summary, skills, roles with bullets, education, certifications, languages. One profile per data directory; Pro adds named variants |
profile_get |
Return the stored profile as JSON, exactly as the other tools see it |
resume_create |
Write the resume as .docx. Bullets are ranked by keyword hits and recency, then trimmed to max_pages against a measured word budget; matched keywords are bolded, missing ones are reported and never added. Styles: modern, classic, compact |
cover_letter_create |
A one-page letter in four parts -- opening, fit, proof, close -- drawn only from the profile. Tones: formal, direct, warm. Unknowns come back as [add: ...] prompts |
tailor_to_job |
Gap analysis against a posting: the keywords it actually asks for, which of them your profile already covers, which it does not, a coverage figure, and rewrites that only reorder facts you already stated |
resume_read |
Read an existing resume .docx back into the profile shape, section by heading. Best effort; nothing is saved unless save: true |
resume_to_markdown |
The resume as markdown, for an application form or an ATS box |
resume_to_html |
Printable HTML with a print stylesheet. Open it and print to PDF |
license_status |
Show free or Pro mode |
license_activate |
Activate a Pro key (verified offline) |
Resource: resume://profile returns the stored profile as JSON.Prompt: apply_to_job chains tailor_to_job, resume_create and cover_letter_create against one posting, andmakes the model report the gaps back to you instead of filling them in.
The cover letter does not invent facts
This is the part that matters, so it is enforced rather than requested:
- Every proof line in the letter is a verbatim bullet from your profile. The letter never paraphrases abullet into a stronger claim.
- A
highlightsentry you pass is checked against the profile first. If the profile does not support it, it isprinted as[add: "..." is not in your profile - add it there or drop it], not as a claim. - Before the file is written, every digit run in the letter is checked against your profile and the arguments youpassed. A number that traces to neither is a refusal, not a warning -- the tool returns an error and writes nothing.The job description is deliberately not an allowed source: the employer's revenue, headcount and throughputfigures are theirs, and the letter will never restate one as yours. Comparison is on whole numbers, so a profileholding
2012does not license a letter claiming12. - Each proof bullet is printed under the role it actually belongs to. A letter that quotes work from two employersprints two headings; work from an earlier job is never listed under your current one.
- A bullet that carries no figure gets
[add: metric]appended, so the letter asks you for the result instead ofguessing one. - Missing keywords from
tailor_to_jobnever become skills. The response says so in plain words.
What you can say
| You say | Tool |
|---|---|
| "Here is my CV: Ada Rowe, backend engineer, Acme Pay since 2021, ..." | profile_set |
| "Read my old resume at ~/Documents/cv.docx and set up my profile." | resume_read |
| "How well do I match this posting?" | tailor_to_job |
| "Make me a one-page resume for this Staff Engineer role." | resume_create |
| "Write the cover letter for Zeta Systems, direct tone." | cover_letter_create |
| "Give me the plain-text version for the application form." | resume_to_markdown |
| "I need a PDF to attach." | resume_to_html, then print to PDF |
| "Apply me to this job." | the apply_to_job prompt |
Worked example
You: Tailor my resume to this posting and write the letter. One page.
tailor_to_job { job_description: "...payments platform, PostgreSQL, Kubernetes..." }
-> matched: payments, postgresql, kubernetes missing: rust
-> coverage 75%
resume_create { style: "modern", target_role: "Staff Engineer",
keywords: ["postgresql", "kubernetes", "rust"], max_pages: 1 }
-> estimated_pages 1, words_used 402 of a 384-word budget for bullets
-> bullets_dropped: ["Wrote the deployment pipeline"]
-> keywords_missing: ["rust"] (not added anywhere)
-> ~/.local/share/mcp-servers/resume/documents/ada-rowe-resume.docx
cover_letter_create { company: "Zeta Systems", role: "Staff Engineer", tone: "formal" }
-> fills_required: ["[add: metric]"]
-> ~/.local/share/mcp-servers/resume/documents/zeta-systems-staff-engineer-cover-letter.docx
How page trimming works
There is no page-layout engine in pure JavaScript, so this server does not pretend to measure one. It uses a wordbudget instead: a full A4 page at 11pt Calibri with 2cm margins holds about 520 words of body text, and a resumespends roughly a seventh of that page on headings, blank lines and the contact block. The net figure is 450 wordsper page (540 for the compact style). The contact block, summary, skills, role headers, education,certifications and languages are counted first; whatever budget is left goes to experience bullets, highest scorefirst. Every role keeps its first bullet before any role gets a second one, so trimming never leaves a job on thepage with nothing under it. The response reports the budget, the words used, the estimated page count and everybullet it dropped, so you can see the decision rather than discover it in Word.
Free vs Pro
| Free | Pro ($19 one-time) | |
|---|---|---|
Profile, resume_create, resume_to_markdown, resume_to_html |
Yes, unlimited | Yes, unlimited |
| Resume styles | modern |
modern, classic, compact |
| Cover letters | 3 per calendar month | Unlimited |
tailor_to_job |
Postings up to 2,000 characters | Any length |
| Profile variants | One profile | Named variants (backend, management, ...) |
| Letterhead colour | Default | Your own accent_color |
| Footer credit | "Generated with mcp-docx by theluckystrike" | Removed |
Get Pro: https://mcp.zovo.one/buy/resume ($19 one-time, or $39 for the whole bundle).
Privacy
All data stays local. Your CV never leaves the machine: the server reads and writes files on your computer, storesthe profile under your data directory, and makes no network request of any kind -- not for licensing (keys areverified offline), not for fonts, not for telemetry.
Pairs with
- mcp-docx -- this server imports its document engine (
@theluckystrike/mcp-docx/lib); install docx too when you also want proposals, contracts and markdown-to-Word. - office-suite -- several servers behind one install, one config entry.
Troubleshooting
npxhangs or fails to find the package: npm publish for this package is pending. Use the.mcpbbundle orthe clone-and-build path above until it lands.- "no profile stored": run
profile_setonce, orresume_read {path, save: true}from an existing resume. - The resume dropped a bullet I wanted: raise
max_pages, or pass the posting's words inkeywordsso thebullet outranks the others.bullets_droppedin the response names every one that did not fit. - Short skill names:
tailor_to_jobkeeps two- and one-character skills --Go,C,R,C#,C++,F#,Qt,UI,UX,QA,ML,AI,AR,VR,JS,TS,K8s,AWS,GCP,SQL,iOS-- plus any shortword that appears in your ownskillslist, and ranks a known skill above a longer word of the same frequency. - A keyword I have is reported missing: matching is on word boundaries, so
godoes not matchGoogleandk8sdoes not matchKubernetes. Add the exact word to your skills if it is true. resume_readput a role inunparsed: resumes have no schema. Nothing is dropped silently -- fix the fieldsand pass them toprofile_set.- There is no
resume_to_pdf: every pure-JavaScript route from Word to PDF needs a native dependency or acloud API.resume_to_htmlwrites semantic HTML with a print stylesheet; print that to PDF. - Node version: requires Node >= 18. Check with
node -v.
MIT licensed. Support: [email protected]
Built by theluckystrike.