io.github.groundtruthtools/ats-jobs-mcp
OfficialAllows searching and retrieving live open job postings from employer career pages hosted on Greenhouse, including title, department, location, employment and workplace type, posted date, parsed salary ranges, and a verification link to the employer's own job advert.
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., "@io.github.groundtruthtools/ats-jobs-mcpCompare software engineer openings and salaries at Anthropic and OpenAI"
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.
ats-jobs-mcp
An MCP server for open job postings, read first-hand from the applicant-tracking system behind a company's careers page. Ask your assistant what Anthropic is hiring for and get the answer from Anthropic's own board, not from a job aggregator's index.
Built on the job board APIs that Greenhouse, Ashby and Lever publish so third parties can build job sites. No scraping, no API key, no account, no personal data.
Why this exists
Those APIs are open, documented, and useless unless you already know the
company's board name: that Anthropic's is anthropic, Ramp's is ramp,
Mistral's is mistral.ai.
None of the vendors publishes a directory of its customers, and none could,
since no vendor knows about the others. Checked 2026-08-24: sitemap.xml on
job-boards.greenhouse.io, boards.greenhouse.io, jobs.lever.co and
apply.workable.com all 404 or redirect.
So this ships one: 7,479 company boards, every one confirmed against the vendor's own API, each carrying the date it was confirmed.
Related MCP server: recruiting-jobs-mcp
Three tools
find_company_board — which system is a company on?
Give it a company name. Get the system and the board name, plus how many roles were open when the board was last confirmed.
list_open_jobs — every open role at one company
Title, department, location, employment type, workplace type, posted date, a
parsed salary range where the employer publishes one, and a verify_url
pointing at the employer's own advert.
compare_companies — several companies, one schema
The thing no single vendor can do. Companies on Greenhouse and companies on Ashby come back with the same field names, so they can be compared directly. One company failing does not lose the others.
Salaries, parsed, and refused when unclear
Ashby prints pay as "$211.4K - $290.6K". Greenhouse prints it in cents,
sometimes as several bands at once. Neither is filterable, so both are turned
into numbers:
"salary_min": 211400.0, "salary_max": 290600.0,
"salary_currency": "USD", "salary_text": "$211.4K - $290.6K"The parser refuses more often than it guesses, deliberately:
$50 - $80 / hourgives no salary. An hourly rate is a different quantity and reporting it as annual would be a confident lie.600 000 krgives no salary.kris Swedish, Norwegian and Danish.0.5% - 1.75% - Offers Equitygives no salary. Equity is not pay.Bands in two currencies are never spanned into a range that exists nowhere.
salary_text always keeps what the employer actually wrote, so nothing is
lost when the parser declines.
Every parsed figure is tested against the employer's own structured
baseSalary block, the one published for Google to index — not against a
number someone typed into a test.
No personal data
Recruiter names are never returned. Email addresses and phone numbers are removed from job descriptions, because descriptions genuinely carry them and a column of work addresses is a marketing list rather than a job feed.
Unlisted Ashby postings are dropped, because Ashby's documentation says plainly that they should not be shown publicly.
Coverage, stated honestly
System | Boards in the directory |
Greenhouse | 4,168 |
Ashby | 3,311 |
Lever is readable but has almost no boards in the directory yet, so name it
directly (lever:spotify) or pass its careers URL. Workable has a confirmed
endpoint but no adapter yet, so it is not listed at all: a directory entry for
something nothing can read is a broken promise.
Install
pip install ats-jobs-mcpThen add to your MCP client configuration:
{
"mcpServers": {
"ats-jobs": {
"command": "ats-jobs-mcp"
}
}
}Relation to the hosted version
The same parsing runs as an Apify Actor at apify.com/groundtruth/ats-job-listings, which adds scheduling and an incremental mode that returns only postings you have not been sent before. This server is free, runs on your machine, and takes no cut of anything.
tests/test_core_parity.py fails if the two copies of the parsing logic drift
apart.
Licence
MIT. Job postings belong to the employers who published them.
Available Tools
3 toolscompare_companiesAInspect
Open jobs across several companies at once, in one schema.
This is the thing no single applicant-tracking system can do: each vendor only knows about its own customers. Companies on different systems come back with the same field names, so they can be compared directly.
One company failing does not lose the others; each failure is reported beside the results that did work.
| Name | Required | Description | Default |
|---|---|---|---|
| companies | Yes | Up to 20 company board names or careers URLs. | |
| per_company | No | Maximum postings per company. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the behavioral burden. It discloses a key behavior: partial failure isolation ('One company failing does not lose the others; each failure is reported beside the results that did work') and normalization of field names across systems ('Companies on different systems come back with the same field names'). This provides valuable behavioral context beyond the schema. It does not cover every possible behavior (e.g., auth, rate limits), but the core transparency is commendable.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is somewhat verbose and literary, with phrases like 'This is the thing no single applicant-tracking system can do' and 'each vendor only knows about its own customers' which add flavor but no operational value. The core information (multi-company, normalized fields, failure isolation) is present but could be stated more tersely. It's not overly long, but it has noticeable fluff, so a mid score is warranted.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given there is no output schema, the description should explain what the agent can expect as a result. It mentions that field names are unified and failures are reported side-by-side, but it does not describe the actual return structure (e.g., array of company results, status codes, error format). For a tool with two parameters and no output schema, this is a moderate gap. The tool is otherwise reasonably well-specified, so a 3 is fitting.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100% — both 'companies' and 'per_company' already have descriptions in the schema. The tool description does not add any additional meaning or syntax details beyond what the schema provides (e.g., it doesn't clarify URL formats or constraints further). With full coverage, a baseline of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a clear verb+resource: 'Open jobs across several companies at once, in one schema.' It explicitly differentiates from single-company ATS tools by highlighting cross-system comparison, which distinguishes it from siblings like list_open_jobs or find_company_board. The purpose is unambiguous and not just a restatement of the name.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage for multi-company comparison ('Open jobs across several companies at once') and notes it's 'the thing no single applicant-tracking system can do,' which suggests when to use it. However, it does not explicitly name alternatives or state when not to use it (e.g., for a single company, use list_open_jobs). The guidance is implied, not explicit.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
find_company_boardAInspect
Find which applicant-tracking system a company's careers page runs on.
Greenhouse, Ashby, Lever and Workable all publish open job board APIs, and all of them are unusable unless you already know the company's board name. None of them publishes a directory of its customers, and none could, since no vendor knows about the others.
Use this first when you have a company name rather than a careers URL.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum matches to return. | |
| company | Yes | Company name or board name, for example 'anthropic' or '1Password'. Case and punctuation do not matter. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden of behavioral disclosure. It explains the underlying problem (APIs require board names, no directory exists) but does not describe the tool's own behavior—such as return format, error handling, or ambiguity handling. While context is provided, explicit tool behavior is missing, so a 3 is appropriate.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The purpose is front-loaded in the first sentence, and the following paragraphs offer valuable domain context about why the tool is necessary and when to use it. The length is justified, though it could be slightly tightened without losing meaning. It reads naturally and every sentence contributes.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a tool with only two parameters and no output schema, the description provides sufficient context: it explains the problem, the usage condition, and implies the return value (the ATS name). It lacks an explicit description of the return structure, but that's minor given the simple nature of the tool. A 4 reflects solid coverage.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, with both 'company' and 'limit' already well-described in the schema. The description text adds no additional parameter-specific semantics beyond what the schema provides. Baseline 3 applies because the schema fully documents the parameters.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description opens with a specific, unambiguous action: 'Find which applicant-tracking system a company's careers page runs on.' This clearly distinguishes it from siblings like list_open_jobs by focusing on identification rather than job listing. It also adds context about the practical need for the tool, making its purpose obvious.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives an explicit usage condition: 'Use this first when you have a company name rather than a careers URL.' This directs the agent on when to invoke it. However, it does not name alternative tools (e.g., compare_companies, list_open_jobs) or provide explicit 'when not to use' guidance, so it falls just short of a 5.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_open_jobsAInspect
Every open job at one company, read from its own careers system.
Returns title, department, location, employment type, workplace type, posted date, a parsed salary range where the employer publishes one, and a verify_url pointing at the employer's own advert.
Salaries are refused rather than guessed: an hourly rate, an ambiguous currency, or bands in two currencies all yield no figure, and salary_text keeps whatever the employer actually wrote.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum postings to return. | |
| company | Yes | A company's board name ('stripe'), a careers URL ('https://jobs.ashbyhq.com/ramp'), or system:name ('ashby:ramp'). | |
| include_description | No | Include the full job description. Off by default because descriptions are long; email addresses and phone numbers are removed from them either way. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full behavioral burden and meets it admirably. It discloses the refusal-over-guessing salary policy with specific edge cases (hourly rate, ambiguous currency, dual-currency bands yield no figure), that salary_text preserves the employer's raw text, that verify_url points to the employer's own advert, and (in the include_description schema field) that email addresses and phone numbers are stripped. These are non-obvious behaviors an agent needs to set expectations correctly.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The purpose is front-loaded in the first sentence, and the prose is efficient. The salary paragraph is the longest but earns its space because the refusal behavior is genuinely non-obvious and critical to trust calibration. It is slightly verbose as three prose paragraphs where a scannable list would do, but every sentence carries information, so no waste.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Despite having no output schema and no annotations, the tool is well covered: return fields are enumerated, salary refusal behavior is specified, company input formats live in the schema, and PII stripping is noted. The only gaps are pagination behavior (limit exists up to 1000 but continuation is undocumented) and error handling for unknown companies — minor omissions that prevent a 5.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100% and the schema's own parameter descriptions are rich (company accepts board name, careers URL, or system:name; include_description explains why it defaults off). The description adds complementary value by explaining what the tool returns for a given call, but it stays at the output/behavior level rather than clarifying parameter semantics directly — so it slightly exceeds the baseline-3 for full coverage without doing the schema's job.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The opening line states a precise verb and resource ('Every open job at one company, read from its own careers system') that immediately distinguishes it from find_company_board (locating a board) and compare_companies (comparing enterprises). Listing the exact return fields (title, department, location, employment type, salary range, verify_url) removes all ambiguity about what the tool yields.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description firmly scopes usage to a single company ('Every open job at one company'), which is clear context, and the 'own careers system' plus verify_url language signals data provenance. However, it never names the sibling alternatives or states when NOT to use it (e.g., no explicit 'to compare companies, use compare_companies'), leaving the routing to inference rather than stating exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections.
3 tool updates
v1.0.0- First observed
compare_companies - First observed
find_company_board - First observed
list_open_jobs
TDQS
Scored across 3 tools
Each tool has a clearly distinct role: one discovers the ATS board, one lists jobs for a single company, and one compares jobs across companies. There is no meaningful overlap or ambiguity between them.
All tool names follow the same verb_noun snake_case pattern: compare_companies, find_company_board, and list_open_jobs. The naming is consistent and predictable.
Three tools is well-scoped for this server's purpose. Each tool occupies a necessary step in the workflow, and none feel redundant or missing.
The tool set covers the full intended workflow: discover the ATS system, list open jobs at a company, and compare jobs across companies. There are no obvious dead ends or missing operations for this read-only domain.
Maintenance
Related MCP Connectors
Search job postings, companies, and technology stacks across 10M+ companies.
Semantic search over 3.5M+ live US job postings pulled straight from company ATSes. Read-only.
Live job postings from 30+ ATS feeds and job boards, one schema. Live results need a Bearer key.
Unified jobs search over official feeds + ATS boards (USAJOBS, Adzuna, Muse, Greenhouse, Lever...)
Related MCP Servers
- AlicenseNot gradedqualityAmaintenanceEnables AI assistants to fetch and structure job postings from major ATS platforms (Greenhouse, Lever, Ashby, etc.) directly, eliminating copy-paste and context loss.242 npm2MIT
- FlicenseNot gradedqualityCmaintenanceEnables AI agents to pull live job listings from major ATS platforms (Greenhouse, Lever, Ashby, Workable), Hacker News hiring threads, and detect hiring signals on company career pages.-
- AlicenseAqualityBmaintenanceSearch and read public Ashby job boards for named companies, with filtering, full job details, and side-by-side compensation comparison. No API key required.6552 npmMIT
- AlicenseNot gradedqualityAmaintenanceEnables users to discover applicant tracking system job boards from company domains, list open roles, detect hiring changes over time, and generate hiring summaries across multiple ATS platforms.MIT