JobHound

JobHound

Enables autonomous job search by scanning, scoring, and applying to jobs via APIs like Ashby, Greenhouse, and Lever, with a TUI dashboard for tracking.

Category
Visit Server

README

JobHound ๐Ÿœ

MCP server that lets Claude Code scan, score, and apply to jobs autonomously.

JobHound connects directly to Ashby, Greenhouse, and Lever job board APIs โ€” no browser required for discovery. It scores every listing with a keyword heuristic, queues high-scoring roles, and uses Claude Code as the tailor to write per-role CVs and cover letters.

Includes a TUI dashboard for tracking your pipeline in real time.


Table of Contents


Why I Built This

Job searching is miserable. LinkedIn Easy Apply is a black hole โ€” you click apply, it goes nowhere, you never hear back. Premium job alerts cost money and send you garbage. Manually browsing 5 job boards daily is a part-time job in itself.

The APIs are free. Ashby, Greenhouse, Lever โ€” they all have public APIs that list every open role. Why am I manually scrolling?

JobHound exists because my agent should handle job discovery, not me. It scans APIs, scores listings against my skills and preferences, queues the good ones, and hands the tailoring work to Claude Code. I review the generated CV and cover letter, say yes or no, and it submits.

The TUI exists because I want to see my pipeline at a glance โ€” 47 tracked, 3 queued, 12 applied, 2 interviewing โ€” without opening a browser tab.


What It Does

Feature What It Does
Scan Fetches from Ashby, Greenhouse, Lever, RemoteOK, HN Hiring, Wellfound
Score Keyword heuristic matches job description against your skills and preferences
Queue High-scoring roles enter a queue for review
Tailor Exposes job + your resume to Claude Code for per-role CV and cover letter generation
Apply Submits tailored applications via API where supported
Track SQLite-backed pipeline tracking with status (new โ†’ queued โ†’ applied โ†’ interviewing โ†’ rejected)
Dashboard Real-time TUI with live updates every 30 seconds
Daemon Background scan loop runs on a schedule

Current Pain Points

These are the battles I'm actively fighting:

  1. Keyword scoring is crude โ€” It's a heuristic: count keyword matches between job description and your config. It doesn't understand that "React" and "frontend" are related, or that "5 years experience" in a job description is flexible. A real scoring model would learn from what you actually applied to and got interviews for.

  2. Not every board has an API โ€” RemoteOK and HN Hiring require scraping. Scraping breaks when they change their HTML. The browser automation layer (playwright-stealth) is overkill for simple HTML scraping but necessary because some sites block basic requests.

  3. Auto-apply is limited โ€” Ashby and some Greenhouse instances support direct API application. Most don't. For those, JobHound generates the tailored docs and you apply manually. The "autonomous" part stops at "here's your CV and cover letter, go submit it."

  4. The TUI is Textual-dependent โ€” Textual is great but heavy. On a slow terminal or over SSH it can lag. The dashboard is pretty but not essential โ€” the core value is the MCP server and scan queue.

  5. Config management is manual โ€” config.yaml needs your skills, preferences, API keys for each source. Updating it is editing YAML. I want the agent to infer my skills from my GitHub repos and update the config automatically.

  6. No integration with Grayson โ€” Grayson is my outreach automation tool (cold emails, networking). JobHound finds the jobs, Grayson finds the people. They don't talk to each other. A warm referral beats a cold application.


End Goals โ€” Where This Is Headed

Short Term (now โ†’ 3 months)

  • Better scoring โ€” move from keyword heuristic to embedding-based semantic similarity
  • Auto-config from GitHub โ€” read my repos, infer my stack, auto-populate config.yaml
  • Per-source rate limit handling โ€” respect Ashby/Greenhouse rate limits, back off gracefully

Medium Term (3โ€“6 months)

  • Grayson integration โ€” for every queued job, Grayson finds a mutual connection or relevant person to reach out to
  • Unified agent pipeline โ€” Blackreach researches the company, Huginn scrapes their blog/docs, JobHound scores the role, Grayson finds the contact, all in one workflow
  • Auto-apply expansion โ€” support more application flows (Lever API, custom forms)

Long Term (6โ€“12 months)

  • Fully autonomous job search โ€” "Find me senior backend roles at AI startups in Toronto, apply to the top 10, network with hiring managers, track everything"
  • Interview prep integration โ€” after an application, auto-research the company, generate likely interview questions, prepare answers
  • Salary negotiation assistant โ€” track market data, suggest negotiation strategies based on role/company/location

Install

git clone https://github.com/Null-Phnix/jobhound
cd jobhound
pip install -e .
cp config.example.yaml config.yaml  # fill in your details

Connect to Claude Code

Add to your ~/.claude/settings.json (or .claude/settings.json in the project):

{
  "mcpServers": {
    "jobhound": {
      "type": "stdio",
      "command": "jobhound-server"
    }
  }
}

MCP Tools

Tool Description
jobhound_scan() Fetch all sources, score jobs, queue high-scoring ones
jobhound_list(status) List jobs by status (queued, applied, failed, etc.)
jobhound_get(id) Full job details + generated docs
jobhound_get_for_tailoring(id) Job description + your resume for Claude to tailor
jobhound_apply_tailored(id, cv, letter) Submit a tailored application
jobhound_update(id, status) Manually set status (interviewing, rejected)
jobhound_pause() Pause the daemon scan loop
jobhound_resume() Resume the daemon scan loop

Workflow

jobhound_scan()                          # find what's new
jobhound_list("queued")                  # see what's waiting
jobhound_get_for_tailoring(42)           # get job + resume
[Claude writes tailored CV + letter]
jobhound_apply_tailored(42, cv, letter)  # submit + record

TUI Dashboard

jobhound-tui

Live two-pane view of your entire job pipeline. Polls SQLite every 30 seconds, shows status by color.

โ”Œโ”€ JobHound โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
โ”‚ [LIVE] 47 tracked ยท 3 queued ยท 12 applied ยท 2 interviewing      โ”‚
โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค
โ”‚ โ–ถ Bree          applied  โ”‚  Bree โ€” Software Engineer, Backend    โ”‚
โ”‚   Modal         applied  โ”‚  Applied: 2026-03-11 via Ashby        โ”‚
โ”‚   LangChain     applied  โ”‚  Score: 87/100                        โ”‚
โ”‚   Cohere        queued   โ”‚  Method: direct POST                  โ”‚
โ”‚   Anthropic     new      โ”‚                                       โ”‚
โ”‚   Cursor        failed   โ”‚  Cover Letter:                        โ”‚
โ”‚                          โ”‚  > The line that stood out in your... โ”‚
โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค
โ”‚ [s]can  [p]ause  [f]ilter  [o]pen URL  [x]export  [q]uit        โ”‚
โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜

TUI Keybinds

Key Action
s Scan sources (fetch + score, no auto-apply)
p Pause / resume daemon
f Cycle filter: all โ†’ new โ†’ queued โ†’ applied โ†’ failed โ†’ interviewing
o Open highlighted job URL in browser
x Export current view to ~/jobhound_export_YYYYMMDD.md + .csv
q Quit

Config

See config.example.yaml. Supports Ashby, Greenhouse, Lever, RemoteOK, HN Hiring, and Wellfound.


Stack

  • Python 3.11+
  • fastmcp โ€” MCP server
  • httpx โ€” source API calls
  • sqlite3 โ€” job tracking
  • textual โ€” TUI dashboard
  • rich โ€” terminal output

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