Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
6,000+ web scrapers for your AI agent, start free logo6,000+ web scrapers for your AI agent, start free

Apify gives your agent live web data: 6,000+ prebuilt scrapers and actors, MCP-ready. Sign up free with $5 in usage credits.

Try Apify free
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 48,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

Enables job search on LinkedIn through MCP tools, including keyword and location search, filtering by remote, easy apply, experience level, job type, and date, and retrieving job details.

README.md

DailyJobHunter MCP Server v3.0

A production-ready MCP server that actually scrapes real jobs using python-jobspy — no API keys, no rate limits, completely free.

What's New in v3.0

| Feature | Details | |---|---| | Real scraping | python-jobspy hits Naukri + LinkedIn + Indeed + Google Jobs | | Tier filter | Auto-removes FAANG, top-tier companies from results | | Resume matching | Score jobs 0-100 against your resume | | JD fetcher | Fetch full job description from any URL | | Daily 3 tool | One command → 3 fresh mid-tier jobs in 30 seconds |

Tools

search_target_jobs

Search real jobs across platforms. Automatically filters out top-tier companies. `` query="Java Full Stack Developer", location="Hyderabad, India", experience_min=2, experience_max=4 ``

search_and_match_jobs ⭐ (Main tool)

Search + score against your resume. Returns top N best-matching jobs with reasons. `` query="Backend Developer", resume_text="<your resume>", top_n=3 ``

get_daily_3_jobs

Quick shortcut — 3 fresh jobs posted in last 48 hours. No resume needed. `` role="Java Full Stack Developer", location="Hyderabad, India", experience_years=3 ``

fetch_job_description

Fetch full JD from any job URL (Naukri, LinkedIn, Indeed). `` job_url="https://www.naukri.com/job-listings-xxx" ``

match_jd_to_resume

Deep analysis: fetch JD + match against resume → score, matched skills, missing skills, tailoring tips. `` job_url="...", resume_text="<your resume>" ``

Deploy on Render

  1. Fork this repo
  2. Create a New Web Service on Render
  3. Connect this repo
  4. Set:
  • Runtime: Python 3.11+
  • Build command: pip install -r requirements.txt
  • Start command: python src/server.py
  • Health check path: /health
  1. Deploy — Render gives you a URL like https://daily-job-hunter.onrender.com

Connect to Perplexity

In Perplexity Desktop → Settings → Connectors → Add Connector → Advanced: ``json { "command": "npx", "args": ["-y", "mcp-remote", "https://YOUR-APP.onrender.com/mcp"], "env": {} } `` > Requires Node.js installed on your machine.

Connect to Claude Desktop

Edit ~/Library/Application Support/Claude/claude_desktop_config.json: ``json { "mcpServers": { "DailyJobHunter": { "command": "npx", "args": ["-y", "mcp-remote", "https://YOUR-APP.onrender.com/mcp"] } } } ``

Your Daily Prompt (save this!)

Run search_and_match_jobs:
- query: "Backend Developer OR Platform Engineer"
- location: "Hyderabad, India"
- experience_min: 2, experience_max: 4
- top_n: 3
- resume_text: [paste your resume here]

Strict rules:
1. Only mid-tier or scaling companies (top-tier already filtered)
2. Discard heavily front-end or 5+ year roles
3. For each match: show title, company, why it matches (specific skills), apply link

How It Works

python-jobspy is an open-source library that scrapes job sites directly, bypassing basic anti-bot measures. It supports concurrent scraping of Naukri, LinkedIn, Indeed, and Google Jobs — zero API keys, zero monthly limits.

The negative filter (TOP_TIER_COMPANIES list) is hardcoded in server.py. Edit it to customize which companies to exclude.

Render Free Tier Notes

  • Server spins down after 15 min of inactivity
  • First request of the day → ~30-60 second cold start
  • Acceptable if you run once daily
  • $7/mo to keep it always-on

Stack

  • python-jobspy — multi-site job scraping (Naukri, LinkedIn, Indeed, Google Jobs)
  • FastMCP — MCP server framework
  • Starlette + uvicorn — ASGI web server
  • httpx + beautifulsoup4 — JD fetching

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Search servers.