job-search-mcp
Sends notifications for high-scoring new jobs via Telegram.
Click on "Deploy 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-search-mcpFind me remote Python jobs scored above 80"
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.
Openings
A job crawler, archive and application tracker you run yourself, operable by you and by your AI agents through the same API.

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
newtooffer, 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:8501One 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
|
|
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 |
| collect on the configured interval (container default) |
| collect once and exit |
| dashboard, REST API and MCP endpoint on port 8501 |
| 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:e2eSee CONTRIBUTING. Openings is a personal tool that grew into a small product; issues and pull requests are welcome.
License
MIT.
This server cannot be deployed
Maintenance
Related MCP Connectors
Public MCP server for discovering open jobs. Search, filter, and get application links.
GetJobzi MCP server for job search, application tracking, and career forecasting.
Personal assistant MCP server with search, execute, packages, jobs, secrets, and integrations.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceUnified 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
- AlicenseNot gradedqualityBmaintenanceA 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
- AlicenseNot gradedqualityCmaintenanceAn 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
- AlicenseNot gradedqualityCmaintenanceMCP 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

