Resume Gap Analyzer

Resume Gap Analyzer

Analyzes resumes against job descriptions to identify missing skills, keywords, and improvement opportunities using AI. Provides structured feedback including gap analysis, ATS optimization suggestions, and actionable recommendations to improve job application success.

Category
Visit Server

README

Resume Gap Analyzer MCP Server

An MCP (Model Context Protocol) server that analyzes resumes against job descriptions to identify gaps, missing keywords, and improvement opportunities using OpenAI's GPT-4o-mini.

https://www.youtube.com/watch?v=JnteMtI5nCs

mcp_front

Features

  • Gap Analysis: Identifies missing skills, experience, certifications, and keywords
  • Prioritized Recommendations: Actionable feedback organized by impact
  • ATS Optimization: Ensures resume compatibility with Applicant Tracking Systems
  • Strength Mapping: Highlights existing qualifications to emphasize
  • Sample Resume Resources: Test with pre-loaded sample resumes

Setup

Prerequisites

Installation

  1. Clone the repository:
git clone <repository-url>
cd gapsinmyresume
  1. Create and activate a virtual environment:
python3 -m venv .venv
source .venv/bin/activate  # On Windows: .venv\Scripts\activate
  1. Install dependencies:
pip install -r requirements.txt
  1. Set your OpenAI API key:
# Copy the example env file
cp .env.example .env

# Edit .env and add your actual API key
# OPENAI_API_KEY=sk-your-actual-key-here

Configuration for Claude Desktop

To use this MCP server with Claude Desktop, add it to your config file:

macOS: ~/Library/Application Support/Claude/claude_desktop_config.json Windows: %APPDATA%/Claude/claude_desktop_config.json

{
  "mcpServers": {
    "resume-gap-analyzer": {
      "command": "/absolute/path/to/gapsinmyresume/.venv/bin/python",
      "args": ["/absolute/path/to/gapsinmyresume/server.py"]
    }
  }
}

Important: Replace /absolute/path/to/gapsinmyresume with your actual path. Use the .venv/bin/python from the virtual environment you created.

After updating the config, restart Claude Desktop for changes to take effect.

Usage

Option 1: Via Claude Desktop (Recommended)

Once configured, simply ask Claude in the desktop app:

"Analyze my resume at /Users/you/Documents/resume.docx against this job description:

[paste full job description here]"

Claude will automatically use the analyze_resume_gaps tool.

Option 2: Direct CLI Testing

Run the included test script to test without Claude Desktop:

# Make sure your .env file has OPENAI_API_KEY set
source .venv/bin/activate
python test_cli.py

This will analyze the first resume in sample-resumes/ against a sample job description.

Option 3: MCP Server Directly

Start the MCP server (for debugging or integration):

source .venv/bin/activate
python server.py

The server runs in stdio mode and accepts MCP protocol messages.

Tool Parameters

analyze_resume_gaps

  • resume_path (string, required): Absolute path to resume file (.docx)
  • job_description (string, required): Full text of the job posting

Example in Claude Desktop:

"Analyze /Users/you/Documents/resume.docx for the Senior Software Engineer role at XYZ Corp.

Job description:
We are seeking a Senior Software Engineer with 5+ years of experience in Python, AWS, and React..."

Output Format

The tool returns structured JSON with:

{
  "overall_match_score": 75,
  "critical_gaps": [
    {
      "category": "hard_skill",
      "gap": "AWS certification missing",
      "importance": "high",
      "recommendation": "Obtain AWS Solutions Architect certification",
      "keywords_to_add": ["AWS", "cloud architecture", "EC2"]
    }
  ],
  "missing_keywords": {
    "technical": ["Kubernetes", "Docker", "CI/CD"],
    "soft_skills": ["leadership", "mentoring"],
    "industry_terms": ["agile", "scrum"]
  },
  "experience_analysis": {
    "required_years": 5,
    "resume_shows_years": 3,
    "gap_exists": true,
    "notes": "Resume shows 3 years but requires 5+"
  },
  "strengths_to_highlight": [
    {
      "strength": "Python expertise",
      "relevance": "Primary language for the role",
      "current_prominence": "medium",
      "recommendation": "Move Python projects to top of experience section"
    }
  ],
  "formatting_suggestions": [
    {
      "issue": "No clear metrics in achievements",
      "impact": "both",
      "fix": "Add quantifiable results (e.g., 'Improved performance by 40%')"
    }
  ],
  "content_improvements": [
    {
      "section": "Professional Summary",
      "current_state": "Generic software engineer summary",
      "suggested_change": "Emphasize Python, AWS, and senior-level leadership",
      "example": "Senior Software Engineer with 3+ years specializing in Python-based cloud solutions...",
      "priority": "high"
    }
  ],
  "quick_wins": [
    "Add 'AWS' keyword to technical skills section",
    "Quantify achievement in Project X with metrics",
    "Reorder skills to match job description priority"
  ],
  "summary": "Strong Python foundation but needs more AWS experience. Highlight existing cloud projects and add relevant certifications. Focus on quantifying achievements."
}

Development

# Run the server directly (for testing)
python server.py

# Format code
black server.py prompts.py

# Lint code
ruff check .

File Structure

gapsinmyresume/
├── server.py                           # Main FastMCP server implementation
├── prompts.py                          # System prompts and Pydantic models
├── test_cli.py                         # CLI test script
├── sample-resumes/                     # Place sample .docx files here
├── sample-job-descriptions/            # Example job descriptions
│   └── senior-software-engineer.txt
├── pyproject.toml                      # Python project configuration
├── requirements.txt                    # Python dependencies
├── .env.example                        # Environment variables template
├── .env                                # Your API keys (git ignored)
├── README.md                           # This file
└── SETUP.md                            # Additional setup notes

How It Works

  1. Document Parsing: Extracts text from DOCX files using python-docx
  2. LLM Analysis: Sends resume and job description to OpenAI gpt-4o-mini
  3. Structured Output: Uses Pydantic models with OpenAI's structured output API
  4. MCP Integration: FastMCP exposes analysis as a tool callable from Claude Desktop

Tips for Best Results

  • Provide complete job descriptions (not just titles)
  • Ensure resume files are properly formatted .docx files
  • Include both required and preferred qualifications in job description
  • Use the quick wins section for immediate, high-impact changes
  • Place test resumes in sample-resumes/ to use the resource feature

Quick Start Example

After setup, try this:

# 1. Activate virtual environment
source .venv/bin/activate

# 2. Run the test script (uses sample resume + sample job description)
python test_cli.py

# 3. Or use with Claude Desktop
# Just ask: "Analyze my resume at /path/to/resume.docx against this job description: [paste description]"

Testing with Sample Resumes

  1. Add .docx files to the sample-resumes/ directory
  2. Sample job descriptions are in sample-job-descriptions/
  3. Run python test_cli.py for quick testing
  4. In Claude Desktop, reference your resume files by absolute path

License

MIT

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured