Skip to main content
Glama
VincenzoImp

job-search-mcp

by VincenzoImp

Openings

CI Python 3.12+ License: MIT Docker

A job crawler, archive and application tracker you run yourself, operable by you and by your AI agents through the same API.

The Inbox: new postings ranked by your own scoring

Why

Job boards forget what you saw, spreadsheets forget what you sent, and the CV you tailored for a role ends up in a folder nobody opens again. Openings keeps all of it in one local database: every posting it collected, every status change with its date, every note, form answer, CV and cover letter attached to the job it belongs to. It is built for one person, runs in two containers on your own machine, and never sends your data anywhere.

  • Collect from job boards (through JobSpy), company career pages on Greenhouse, Lever, Ashby and SmartRecruiters, RSS feeds and the Adzuna API. Anything the crawler cannot see, you or an agent add by hand.

  • Rank with keyword categories and signed weights you write yourself; every job shows which categories matched and why it scored what it did.

  • Track one status per job from new to offer, with a timeline. A job is the opening, not the advert: the same role seen on two boards is one job with two postings. Blacklisting hides, never deletes, and can be undone.

  • Archive the application itself next to the posting, and take it out again as one zip.

  • Search by meaning with a small sentence model that runs locally.

  • Automate through a REST API and an MCP server with the same tools the dashboard uses, so an agent can triage the inbox, attach a tailored CV and record an application while you watch the pipeline.

The YAML owns intake and scoring; the database owns state. A job's status is never derived from configuration.

Related MCP server: Jobs MCP Server

Quick start

cp config/settings.example.yaml settings.yaml   # edit locations, queries, scoring
docker compose up -d
open http://127.0.0.1:8501

One process serves the dashboard at /, the REST API at /api and the MCP endpoint at /mcp. Ports bind to 127.0.0.1 by default.

A look around

Pipeline

Job page

The Pipeline: one column per status, cards move with the keyboard, by dragging or from a menu.

The application: files with inline previews, form answers, notes, one zip for everything.

The dashboard works on a phone as well as a desk, in light and dark. More in Dashboard.

Agents

Point an MCP client at http://127.0.0.1:8501/mcp (streamable HTTP):

{ "mcpServers": { "openings": { "type": "http", "url": "http://127.0.0.1:8501/mcp" } } }

A typical session: list_jobs(statuses=["new"], min_score=40) to triage, blacklist_jobs for the noise, get_job for the posting and its score breakdown, add_attachment with the tailored CV, add_note with the form answers, set_status(..., "applied", note="sent through the careers page"). For a posting the crawler never saw, add_job with the digested fields. The full tool list is in MCP server.

Configuration

Everything about what to collect and how to rank it lives in settings.yaml. The annotated example is the reference; unknown keys fail at boot and secrets can be written as $ENV_VAR.

sources:
  jobspy:
    sites: [linkedin]
    locations: ["Berlin, Germany", "Remote"]
    queries:
      core: ["backend engineer", "platform engineer"]
  companies:
    - { name: Example, ats: greenhouse, slug: example, titles: [engineer] }
scoring:
  save_threshold: 20
  notify_threshold: 60
  weights: { role: 25, stack: 15, language_required: -60 }
  keywords:
    role: ["backend engineer", "platform engineer"]
    stack: ["python", "go", "postgresql"]
    language_required: ["fluent german", "deutsch erforderlich"]

See Configuration and Sources.

Commands

Command

Role

openings scheduler

collect on the configured interval (container default)

openings run

collect once and exit

openings web

dashboard, REST API and MCP endpoint on port 8501

openings healthcheck

verify config, database and directories

Documentation

Development

uv sync
npm --prefix frontend install
cp config/settings.example.yaml settings.yaml
OPENINGS_DATA_DIR=./data OPENINGS_CONFIG=./settings.yaml uv run openings web
uv run pytest
npm --prefix frontend run quality
npm --prefix frontend run test:e2e

See CONTRIBUTING. Openings is a personal tool that grew into a small product; issues and pull requests are welcome.

License

MIT.

Related MCP Connectors

Related MCP Servers

  • A
    license
    Not graded
    quality
    D
    maintenance
    Unified job search MCP server that aggregates live listings from multiple job boards with deduplication, enabling AI agents to find and filter jobs by keyword and location.
    MIT
  • A
    license
    Not graded
    quality
    B
    maintenance
    A custom MCP server that exposes a jobs database to any MCP-compatible LLM client, allowing users to ask in plain English to search, filter, and match job openings.
    MIT
  • A
    license
    Not graded
    quality
    C
    maintenance
    An MCP server that exposes job-search and application-management capabilities to compatible AI clients, enabling discovery of vacancies, drafting of tailored application materials, and coordinated human-approved submissions.
    MIT
  • A
    license
    Not graded
    quality
    C
    maintenance
    MCP server that aggregates and deduplicates job listings from multiple public sources, ranks them against a user's resume, and exposes tools for searching, viewing details, explaining fit, and tracking applications.
    MIT