resume-mcp-server

bugparty/resume-mcp-server

3.3

If you are the rightful owner of resume-mcp-server and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.

This document provides a comprehensive guide to setting up and using a Model Context Protocol (MCP) server for rendering resumes using LaTeX and compiling them into PDFs.

Tools
4
Resources
0
Prompts
0

Resume MCP Agent

🤖 What is Resume MCP Agent?

Resume MCP Agent is an intelligent resume assistant based on MCP (Model Context Protocol) that allows you to directly manage and optimize your resume within AI clients like Claude Desktop and ChatGPT.

🎯 What can it do for you?

📝 Smart Resume Management

  • Automatically read and analyze your resume content
  • Support multiple resume versions for easy switching and comparison
  • Real-time preview with instant results

🎯 Precise Job Matching

  • Upload job descriptions and automatically analyze key requirements
  • Intelligent recommendations for resume optimization
  • One-click generation of tailored resumes for specific positions

📄 Professional PDF Output

  • Automatically generate beautiful PDF resumes
  • Support custom templates and formats
  • Ensure proper formatting suitable for direct submission

🔄 Seamless AI Integration

  • Direct operation within Claude Desktop
  • Support for ChatGPT Developer Mode
  • Complete all operations through natural language commands

💡 Typical Use Cases

  1. Job Preparation: Create customized resume versions for different companies
  2. Resume Optimization: Adjust content and keywords based on job requirements
  3. Format Conversion: Convert from Word/PDF to structured data for easy management
  4. Batch Processing: Quickly generate multiple resume versions

🚀 Quick Start

Option 1: Docker Deployment (Recommended)

For the easiest setup, use Docker to get started in minutes:

# Build the image
docker build -t resume-mcp:latest .

# Run with automatic Cloudflare tunnel (recommended with data persistence)
docker run --rm -p 8000:8000 \
  -v "$(pwd)/data:/app/data" \
  -v "$(pwd)/templates:/app/templates" \
  --env-file ./.env \
  resume-mcp:latest

The container will automatically create a public URL for ChatGPT integration. See for detailed instructions.

Option 2: Local Setup

  1. Clone and setup environment

    git clone <repository-url>
    cd resume_mcp
    uv venv && source .venv/bin/activate
    uv sync
    
  2. Configure environment variables

    cp sample.env .env
    # Edit .env with your API keys
    
  3. Install XeLaTeX (for PDF generation)

    • macOS: brew install --cask mactex-no-gui
    • Ubuntu: sudo apt-get install texlive-xetex texlive-latex-recommended
    • See full instructions in
  4. Start the MCP server

    # HTTP mode (for testing)
    uv run python scripts/start_mcp_server.py --transport http --port 8000
    
    # STDIO mode (for Claude Desktop)
    uv run python scripts/start_mcp_server.py --transport stdio
    

📚 Documentation

  • - Detailed MCP server configuration and client connection
  • - Tool usage guide and typical workflows
  • - Docker deployment and cloud access configuration
  • - Resume version management

🛠️ Development

Testing

# Run all tests
uv run python scripts/run_all_tests.py

# Run specific test
uv run pytest tests/test_resume_rendering.py

CLI Tools

# Generate LaTeX
uv run python scripts/render_resume_cli.py resume

# Generate PDF
uv run python scripts/render_resume_cli.py resume --tex build/resume.tex --pdf build/resume.pdf --compile

📋 Requirements

  • Python 3.12+
  • UV package manager
  • XeLaTeX (for PDF generation)

🚀 Ready to Start

Whether you're a job seeker, HR professional, or developer, you can get started quickly:

  • Regular users: Use Docker for one-click deployment in 5 minutes
  • Developers: Set up local environment for full control and customization

For detailed setup instructions and troubleshooting, see the .