job-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@job-mcpfind data engineer jobs matching my CV and apply to top matches"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Universal Multi-Source Job Search FastMCP Server (job-mcp)
An enterprise-grade, privacy-first FastMCP server providing intelligent, multi-source tech job aggregation, smart deduplication, dynamic CV skill extraction, requirement coverage scoring, and autonomous job application workflows across HireMeTech, Comeet ATS, and AllJobs Israel.
Architecture Overview
graph TD
Client([MCP Client: Claude / Cursor / Gemini Spark / Antigravity]) --> Tools[FastMCP Server Layer]
Tools --> Aggregator[JobAggregator]
Aggregator --> Registry[SourceRegistry]
subgraph Parallel Pluggable Sources Layer
Registry --> S1[HireMeTechSource<br/>Direct REST API + Session Fallback]
Registry --> S2[ComeetSource<br/>Direct ATS API + Concurrency Semaphore]
Registry --> S3[AllJobsSource<br/>Category Feeds + Anti-Blocking Headers]
end
subgraph Processing & Normalization Engine
S1 --> Dedup[Deduplication & Entity Merger]
S2 --> Dedup
S3 --> Dedup
Dedup --> NormKey["Key = slug(title) + '@' + slug(company)"]
NormKey --> Merge[Metadata & Links Merger]
Merge --> Scorer[Unified CV / Skill Matcher]
end
subgraph Dynamic Candidate Engine
CV["Candidate CV (.pdf / .docx / .txt)"] --> Extractor[Dynamic CV & Profile Extractor]
Extractor --> Skills["Extracted Skills (40+ tokens)"]
Extractor --> Seniority["Inferred Seniority & Exclusions"]
Extractor --> Roles["Target Job Roles"]
Skills --> Scorer
Seniority --> Scorer
end
Scorer --> Cache[Unified JobCache - 1h TTL]
Cache --> ToolsKey Features
Dynamic CV & Candidate Profile Extraction:
Multi-Format Ingestion: Supports
.pdf(viapypdf),.docx(viapython-docx), and.txtfiles.NLP Skill Chunking & Dynamic Lexicon: Discovers and extracts 40+ technical skills without brittle hardcoding, supporting complex multi-word technologies (e.g., FastAPI, LangGraph, PostgreSQL, Smart Contracts, GraphRAG).
Automatic Seniority & Exclusion Detection: Accurately infers candidate seniority (Junior, Mid, Senior, Lead, Principal, Director) and generates intelligent negative keywords to filter out mismatched positions.
Stopword & Noise Filtering: Rigorously discards resume structural artifacts, dates, education titles, and non-technical metadata.
Smart Requirement Coverage Scoring (0–100):
Job Requirement Coverage Ratio: Computes how comprehensively candidate skills satisfy the specific job's listed tech stack (
matched_job_skills / total_job_skills), preventing penalty for candidates with broad resumes.Weighted Component Scoring:
Tech Stack Overlap & Coverage: Up to 40 points
Full CV Keyword Relevance: Up to 25 points
Work Mode & Location Alignment: Up to 20 points
Salary Expectations: Up to 15 points
Exclusion Penalty: -100 points for hard seniority/tech disqualifiers.
Tiered Match Categorization:
Top-Tier Match ($\ge 85$): Auto-apply / prioritized application candidates.
Strong Match ($70 - 84$): High-interest listings flagged for review/bookmarking.
Disqualified ($< 50$): Automatically hidden or purged.
Pluggable Multi-Source Architecture:
HireMeTech: Direct REST API integration (
/api/jobs/search,/api/auth/me,/api/resume/profile) with automated DOM fallback.Comeet (Direct ATS): Direct integration with Comeet Careers API (
/careers-api/2.0/company/{id}/positions) withasyncio.Semaphore(5)rate-limiting, tech directory indexing, and per-company TTL caching.AllJobs Israel: Category feed integration with realistic browser headers and source-level error isolation.
Cross-Source Deduplication & Entity Merger:
Eliminates duplicates when listings appear across multiple job boards.
Merges source lists (
sources: ["hiremetech", "comeet"]), unions tech stacks, preserves richest description, and prioritizes direct ATS application links.
Autonomous & Supervised Operation Modes:
Supervised Mode: Standard MCP confirmation for each tool.
Autonomous Mode: Safe read/filter/bookmark chaining without manual prompts; two-stage safety barrier on application submission.
Observability & Resilience:
Structured JSON logging (
structlog) writing tostderrwith token/credential sanitization.Automatic trace ID tracking across all
ToolResponsepayloads.
Tool Reference (9 Tools)
Tool Name | Parameters | Description |
| none | Lists all registered job sources ( |
|
| Fetches matched listings across all or specified platforms with deduplication. |
|
| Scores and filters aggregated jobs against candidate CV and preferences. |
|
| Saves/favorites a job listing on the originating platform. |
|
| Dismisses/hides a job listing from view and removes it from cache. |
|
| Step 1: Inspects application modal, stages preview, reports warnings. |
|
| Step 2: Executes application submission. Always requires explicit confirmation. |
| none | Discovers and calibrates DOM selectors against live pages with self-healing heuristics. |
|
| Switches server execution mode between supervised and autonomous. |
Quick Start & Setup
1. Clone & Install Dependencies
git clone https://github.com/zvieli/hireme_mcp.git
cd hireme_mcp
# Using uv (recommended)
uv venv .venv
uv pip install -e ".[dev]"
playwright install chromium2. Configure Your Candidate Profile & CV
Place your resume (cv.pdf, cv.docx, or cv.txt) in the root directory:
cp /path/to/your/resume.pdf ./cv.pdf
cp .env.example .envEdit .env to configure your default CV path and contact details:
DEFAULT_CV_PATH=./cv.pdf
CANDIDATE_EMAIL=your.email@example.com
CANDIDATE_NAME="Your Name"3. (Optional) First-Time Authentication Setup for HireMeTech
Comeet and AllJobs work automatically without login. To authenticate your HireMeTech account for direct API access and auto-apply:
.venv/bin/python -m job_mcp.setupA Chromium browser window will open.
Log in with your credentials.
Return to the terminal and press
[Enter]to save the session to./browser_profile.
Running the Server
Option A: Using Docker (Recommended)
# Build and run in background
docker compose up -d
# View live multi-source aggregation logs
docker compose logs -f hireme-mcpOption B: Local Execution
# Streamable HTTP (Default for Web & Cloud Clients)
.venv/bin/python -m job_mcp --transport http --host 0.0.0.0 --port 8000
# Stdio (Default for Desktop Clients)
.venv/bin/python -m job_mcp --transport stdioVisual CLI Pipeline Runner
To run a full autonomous discovery, scoring, and application dry-run directly in your terminal with rich visual output:
# Run with auto-extracted skills from your CV:
.venv/bin/python scripts/run_mock_llm_pipeline.py --cv ./cv.pdf
# Run with explicit stack override and remote filter:
.venv/bin/python scripts/run_mock_llm_pipeline.py --cv ./cv.pdf --stack "Python,FastAPI,LangGraph" --work-mode remote --location "Tel Aviv"
# Execute live application submissions (disabled by default in dry-run):
.venv/bin/python scripts/run_mock_llm_pipeline.py --cv ./cv.pdf --auto-applyMCP Client Configuration
1. Claude Desktop (claude_desktop_config.json)
On Linux: ~/.config/Claude/claude_desktop_config.json
On macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
On Windows: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"job-search-mcp": {
"command": "/absolute/path/to/hireme_mcp/.venv/bin/python",
"args": ["-m", "job_mcp", "--transport", "stdio"],
"env": {
"BROWSER_HEADLESS": "true",
"DEFAULT_CV_PATH": "/absolute/path/to/hireme_mcp/cv.pdf",
"CANDIDATE_EMAIL": "candidate@example.com",
"LOG_LEVEL": "INFO"
}
}
}
}2. Gemini Spark / Web MCP Clients
Endpoint URL:
https://<your-host-or-devtunnel-id>/mcpTransport:
Streamable HTTPAuthentication: None / No Auth
Environment Variables
Variable | Default | Description |
|
| Default CV file path for dynamic candidate skill extraction. |
|
| Candidate email for automated application modals. |
|
| Candidate full name for application forms. |
|
| Transport protocol ( |
|
| Host binding for HTTP/SSE transport. |
|
| Port for HTTP/SSE transport. |
|
| Run browser in headless mode ( |
|
| Directory for persistent Chromium session storage. |
|
| In-memory deduplicated job cache TTL in minutes. |
|
| Structured logging level ( |
Running Tests
Run the full automated test suite (542 tests):
.venv/bin/pytest tests/ -vLicense
This project is licensed under the MIT License.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Job platform for AI agents. Track tech jobs from companies that match your stack.
AI job search MCP — fact-checked jobs, application tracker, alerts. ChatGPT, Claude, Cursor.
Unified jobs search over official feeds + ATS boards (USAJOBS, Adzuna, Muse, Greenhouse, Lever...)
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/zvieli/TechJobMCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server