🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

resume-optimizer

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

resume-optimizer

MCP server for resume optimization — ATS scoring, keyword analysis, format checks, job description matching, and improvement suggestions.

latest
Source
npmnpm
Version
1.1.4
Version published
Maintainers
1
Created
Source

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

PlanPriceFeatures
Basic$8/moanalyze_resume, check_ats, improve_bulletsBuy →
Pro$15/moAll 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\njohn@example.com\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-optimizer

Or install globally:

npm install -g resume-optimizer

Usage

stdio (default)

npx -y resume-optimizer

SSE (HTTP)

npx -y resume-optimizer --sse
# or with custom port:
PORT=8080 npx -y resume-optimizer --sse

Claude 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 implementation

License

MIT

Keywords

mcp

FAQs

Package last updated on 04 Aug 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts