resume-optimizer
v1.1.4
Published
MCP server for resume optimization — ATS scoring, keyword analysis, format checks, job description matching, and improvement suggestions.
Maintainers
Readme
Resume Optimizer MCP Server
An MCP (Model Context Protocol) server for resume and CV optimization. Provides comprehensive ATS scoring, keyword analysis, job description matching, bullet point improvement, professional summary generation, and format checking -- all powered by pure text analysis and heuristics with no external API calls.
Pricing
| Plan | Price | Features |
|------|-------|----------|
| Basic | $8/mo | analyze_resume, check_ats, improve_bullets — Buy → |
| Pro | $15/mo | All 5 tools, unlimited usage, priority support — Buy → |
Free trial: 3 calls total (shared across all tools), no credit card. License keys are emailed instantly after checkout. More info: aivp-mcp.vercel.app
Tools
analyze_resume
Comprehensive resume analysis. Returns an overall score (0-100) with breakdowns for ATS compatibility, keyword density, action verb usage, quantified achievements, section completeness (contact, summary, experience, education, skills), formatting issues, and length assessment.
{
"resume_text": "John Doe\[email protected]\n555-123-4567\n\nProfessional Summary\n...\n\nExperience\n...",
"job_description": "We are looking for a Senior Software Engineer with 5+ years..."
}optimize_for_job
Match a resume against a specific job description. Identifies matching keywords, finds missing keywords, suggests bullet point rewrites, calculates a match score (0-100), highlights transferable skills, and provides gap analysis.
{
"resume_text": "Full resume text...",
"job_description": "Full job description text..."
}generate_summary
Generate 2-3 sentence professional summary options from resume text. Produces three variants -- confident, technical, and leadership-focused -- tailored to the detected career level (entry/mid/senior/executive).
{
"resume_text": "Full resume text...",
"target_role": "Engineering Manager"
}improve_bullets
Analyze bullet points and suggest rewrites with stronger action verbs, quantification, and STAR method format. Returns before/after comparisons with per-bullet scores.
{
"bullets": [
"Responsible for managing a team of developers",
"Improved system performance by 40% through database optimization",
"Worked on various projects"
],
"context": "software engineering"
}check_ats
Deep ATS (Applicant Tracking System) compatibility check. Validates formatting, section headers, contact info parsing, keyword stuffing detection, and provides file format advice. Returns categorized issues with fix suggestions.
{
"resume_text": "Full resume text..."
}Installation
No install step needed — run straight from npm:
npx -y resume-optimizerOr install globally:
npm install -g resume-optimizerUsage
stdio (default)
npx -y resume-optimizerSSE (HTTP)
npx -y resume-optimizer --sse
# or with custom port:
PORT=8080 npx -y resume-optimizer --sseClaude Desktop Configuration
Add to your claude_desktop_config.json:
{
"mcpServers": {
"resume-optimizer": {
"command": "npx",
"args": ["-y", "resume-optimizer"],
"env": { "LICENSE_KEY": "<your license key — omit for free trial>" }
}
}
}SSE Connection
Connect to the SSE endpoint for web-based integrations:
- SSE endpoint:
GET http://localhost:3000/sse - Messages endpoint:
POST http://localhost:3000/messages?sessionId=<id> - Health check:
GET http://localhost:3000/health
Industry Keyword Databases
Built-in keyword databases for:
- Tech -- Software development, cloud, DevOps, ML/AI, and 40+ tools
- Finance -- Financial analysis, risk management, Bloomberg, and certifications (CFA, CPA)
- Marketing -- SEO/SEM, analytics, marketing automation, and social media tools
- Healthcare -- Clinical, HIPAA, EHR systems, and nursing certifications
- General -- Project management, operations, and cross-industry skills
Project Structure
src/
index.ts # Server entry point, tool registration, transports
types.ts # Shared TypeScript interfaces
data/
keywords.ts # Industry keyword databases, section patterns, quantifiers
action-verbs.ts # Categorized action verb database
tools/
score-resume.ts # analyze_resume implementation
match-job.ts # optimize_for_job implementation
generate-summary.ts # generate_summary implementation
improve-bullets.ts # improve_bullets implementation
check-format.ts # check_ats implementationLicense
MIT
