Job Matcher MCP

Job Matcher MCP

AI-powered job search and resume customization MCP server that automates job searching and tailors resumes for each role.

Category
Visit Server

README

Job Matcher MCP

šŸŽÆ AI-powered job search and resume customization MCP (Model Context Protocol) server

Automate your job search and customize your resume for each role in under a minute. Powered by job APIs and Claude LLM.


šŸ“‹ Table of Contents


šŸš€ Quick Start

Goal: Get the server running with mock data in 5 minutes (no API keys needed).

1. Clone the repository

\\ash cd job-matcher-mcp \\

2. Install dependencies

\\ash pip install -r requirements.txt \\

3. Run with mock data

\\ash export USE_MOCK_DATA=true python mcp_server.py \\

Expected output: \
=== Testing search_jobs === { "success": true, "job_listings": [ { "id": "mock_1", "title": "Senior Product Manager", "company": "TechCorp Inc", "location": "San Francisco, CA", ... } ], ... }

=== Testing customize_resume === { "success": true, "customized_resume": "# John Doe...", ... } `

āœ… Success! Your MCP server is working. Now let's add real API keys.


✨ Features

Feature Status Description
Job Search āœ… MVP Query 1000s of job listings via Adzuna API
Resume Customization āœ… MVP AI-powered resume tailoring using Claude
Skill Matching āœ… MVP Identify matched/missing skills
ATS Optimization āœ… MVP Automatic keyword injection for ATS
Mock Data Mode āœ… MVP Test without API keys
Multi-API Support šŸ”œ v1.2 Add Indeed, LinkedIn, AngelList
Cover Letter Generation šŸ”œ v1.2 Auto-generate cover letters
Application Tracking šŸ”œ v2.0 Track applications & interviews

šŸ”§ Installation

Prerequisites

  • Python 3.10 or higher
  • pip (Python package manager)
  • Git

Step 1: Clone the repository

\\ash git clone https://github.com/yourusername/job-matcher-mcp.git cd job-matcher-mcp \\

Step 2: Create virtual environment (recommended)

\\ash

macOS/Linux

python3 -m venv venv source venv/bin/activate

Windows

python -m venv venv .\venv\Scripts\Activate.ps1 \\

Step 3: Install dependencies

\\ash pip install -r requirements.txt \\


āš™ļø Configuration

1. Get API Keys

Adzuna API (Free)

  1. Go to https://developer.adzuna.com/
  2. Create an account
  3. Create an app to get App ID and App Key
  4. Free tier: ~100 requests/day

Anthropic Claude API (Paid, .50-5/month)

  1. Go to https://console.anthropic.com/
  2. Create an account
  3. Generate an API key
  4. Pricing: ~.003 per 1K input tokens, .015 per 1K output tokens

2. Create .env file

\\ash cp .env.example .env \\

3. Add your API keys to .env

\\env ADZUNA_APP_ID=your_actual_app_id ADZUNA_APP_KEY=your_actual_app_key ANTHROPIC_API_KEY=sk-ant-your_actual_api_key USE_MOCK_DATA=false LOG_LEVEL=INFO \\

4. Load environment variables

\\ash

macOS/Linux

export \

Windows PowerShell

Get-Content .env | ForEach-Object { , \ = .Split('=') if () { Set-Item -Path env:\ -Value \ } } \\


šŸ’» Usage

Run the server

\\ash python mcp_server.py \\

Test with curl (example)

\\ash

Search for jobs

curl -X POST http://localhost:8000/tools/search_jobs \ -H "Content-Type: application/json" \ -d '{ "role": "Product Manager", "location": "San Francisco, CA", "experience_years": 5, "max_results": 10 }'

Customize resume

curl -X POST http://localhost:8000/tools/customize_resume \ -H "Content-Type: application/json" \ -d '{ "base_resume": "...", "job_description": "...", "template": "modern" }' \\

Python example

\\python from mcp_server import JobMatcherMCPServer

server = JobMatcherMCPServer()

Search jobs

jobs = server.search_jobs( role="Product Manager", location="San Francisco, CA", experience_years=5, max_results=10 ) print(jobs)

Customize resume

resume = server.customize_resume( base_resume="Your resume text here...", job_description="Job description here...", template="modern" ) print(resume) \\


šŸ› ļø MCP Tools Reference

Tool 1: \search_jobs\

Search for job listings based on criteria.

Input Schema

\\json { "role": "Product Manager", // Required: Job title "location": "San Francisco, CA", // Required: Geographic location "experience_years": 5, // Required: Years of experience "max_results": 10, // Optional: Limit results (default: 10) "use_mock_data": false // Optional: Use mock data (default: false) } \\

Output Schema

\\json { "success": true, "job_listings": [ { "id": "12345", "title": "Senior Product Manager", "company": "TechCorp", "location": "San Francisco, CA", "link": "https://...", "salary_min": 120000, "salary_max": 160000, "posted_date": "2026-08-17T10:00:00Z", "description_snippet": "We are looking for..." } ], "total_found": 123, "search_time_ms": 1234, "error": null } \\

Example

\\python jobs = server.search_jobs( role="Product Manager", location="Remote", experience_years=3, max_results=5 ) \\


Tool 2: \customize_resume\

Customize resume for a specific job using AI.

Input Schema

\\json { "base_resume": "# Jane Doe...", // Required: Your resume text "job_description": "We are looking for...", // Required: Job posting "template": "modern", // Optional: modern|classic|minimal "use_mock_data": false // Optional: Use mock data } \\

Output Schema

\\json { "success": true, "customized_resume": "# Jane Doe...", "match_analysis": { "skills_match_percentage": 82, "matched_skills": ["Product Management", "Leadership"], "missing_skills": ["Machine Learning", "Cloud"], "suggestions": ["Add ML experience if applicable"], "keywords_added": ["Data-driven", "Cross-functional"] }, "generation_time_ms": 2345, "error": null } \\

Example

\\python customized = server.customize_resume( base_resume=open("resume.txt").read(), job_description=open("job_posting.txt").read(), template="modern" ) \\


šŸ—ļø Architecture

ā”Œā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā” │ User/AI Agent (Chat, Script, API Client) │ ā””ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”¬ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”˜ │ MCP Protocol ā”Œā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā–¼ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā” │ Job Matcher MCP Server │ │ ā”Œā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā” │ │ │ Tool: search_jobs() │ │ │ │ - Query Adzuna API │ │ │ │ - Parse & structure results │ │ │ ā””ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”˜ │ │ ā”Œā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā” │ │ │ Tool: customize_resume() │ │ │ │ - Send to Claude API │ │ │ │ - Parse & return customized resume │ │ │ ā””ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”˜ │ │ ā”Œā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā” │ │ │ External APIs │ │ │ │ - Adzuna Job Search API │ │ │ │ - Anthropic Claude API │ │ │ ā””ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”˜ │ ā””ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”˜


šŸ” Troubleshooting

Issue: \ModuleNotFoundError: No module named 'anthropic'\

Solution: Install dependencies \\ash pip install -r requirements.txt \\

Issue: \API request failed: Unauthorized\

Solution: Check your API keys in .env \\ash

Verify keys are set

echo
echo
\\

Issue: \No jobs found\

Solution: Try a different role/location or increase max_results \\python

Try broader search

jobs = server.search_jobs( role="Manager", # More general term location="New York, NY", experience_years=5, max_results=50 ) \\

Issue: \Claude API response too slow\

Solution: Use mock data for testing \\python resume = server.customize_resume( base_resume="...", job_description="...", use_mock_data=True # Skip API call ) \\

Issue: \Rate limit exceeded\

Solution: Adzuna free tier has limits. Implement caching: \\python

Store job search results

cached_jobs = {} key = f"{role}{location}{experience_years}" if key not in cached_jobs: cached_jobs[key] = server.search_jobs(...) \\


🚢 Deployment

Deploy to Vercel

\\ash

1. Create Vercel account at https://vercel.com

2. Install Vercel CLI

npm install -g vercel

3. Deploy

vercel

4. Add environment variables in Vercel dashboard

Settings → Environment Variables

\\

Deploy to Railway

\\ash

1. Create Railway account at https://railway.app

2. Connect your Git repository

3. Add environment variables in Railway dashboard

\\


šŸ“Š Performance Metrics (Target)

Operation Target Time Actual
Job search <5 seconds ~2-3s
Resume customization <10 seconds ~3-5s
Mock job search <100ms ~50ms
Mock resume customization <500ms ~200ms

šŸ“š API References

  • Adzuna API: https://developer.adzuna.com/docs
  • Claude API: https://docs.anthropic.com/
  • MCP Protocol: https://modelcontextprotocol.io/

šŸ“ License

MIT License - see LICENSE file for details


šŸ‘Øā€šŸ’¼ Author

Built for tech product managers in job transition.

Version: 1.0.0
Last Updated: 2026-08-17
Status: MVP Ready

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