npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

resume-optimizer

v1.1.4

Published

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

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_bulletsBuy → | | 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-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