mcp-wagewatch
This server provides tools to query and analyze U.S. Department of Labor Wage and Hour Division (WHD) enforcement data on concluded compliance actions since FY2005. You can:
Search for employer violations by name (or name fragment), optionally filtering by state. Results include case details like location, findings dates, back wages owed, civil penalties, and number of affected employees, sorted by largest back wages first.
Get aggregate summaries of total back wages, employees affected, civil penalties, and case counts for an employer and/or state, aggregated across up to 1,000 matching cases.
Browse top violations by state to discover the worst enforcement cases in a state, ordered by back wages, with an optional NAICS code prefix to filter by industry.
Retrieve full case details by case ID, including a per-statute breakdown of which labor laws were violated (e.g., FLSA, MSPA, H-1B, FMLA, Davis-Bacon, and child labor statutes).
This data is ideal for worker-justice research, legal-aid intake, and union investigations.
Click on "Install 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., "@mcp-wagewatchFind wage theft cases for Tyson Foods in Arkansas"
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.
mcp-wagewatch
MCP server over the U.S. Department of Labor Wage and Hour Division (WHD) enforcement dataset: employer wage-theft history, back wages owed, civil penalties, and affected-employee counts. Built for worker-justice nonprofits, legal-aid intake, and union researchers.
The data is the WHISARD compliance-action dataset (every concluded WHD compliance action since FY2005) served from the DOL Open Data API. This server wraps the raw column names (trade_nm, bw_atp_amt, ee_violtd_cnt, ...) into normalized tool outputs — field map below.
Tools
Tool | Arguments | Returns |
|
| Enforcement cases matching the employer name, largest back wages first. Per case: employer, location, findings dates, back wages, civil penalties, employees affected, violation count. |
|
| Aggregate totals across matching cases: total back wages, total employees affected, total civil penalties, case count, findings date range. |
|
| Top cases in a state where a violation was found, ordered by back wages. Optional NAICS-prefix industry filter. |
|
| Full record for one case, including the per-statute breakdown (which laws were cited: FLSA, MSPA, H-1B, FMLA, Davis-Bacon, child labor, and so on). |
Related MCP server: DOL WHD MCP
Data source
Base URL:
https://apiprod.dol.gov/v4Query path:
GET /get/WHD/enforcement/json(agencyWHD, endpointenforcement, tableWHD_enforcement)Auth: a free
X-API-KEY, sent only as a request header (never in the query string, so it stays out of URLs and logs).Filtering: the
filter_objectquery parameter takes a JSON string withfield/operator/value(operatorseq,neq,gt,lt,in,not_in,like), composable withand/or. Paging vialimit/offset, ordering viasort_by/sort.Scope: one row per concluded compliance action since FY2005.
Sources:
DOL API User Guide (endpoint template, auth,
filter_objectsyntax): https://www.dataportal.dol.gov/pdf/dol-api-user-guide.pdfLive dataset catalog (agency/endpoint identifiers): https://apiprod.dol.gov/v4/datasets
Dataset landing page: https://catalog.data.gov/dataset/wage-and-hour-division-compliance-action-data
WHISARD column dictionary: https://github.com/jeremybmerrill/whd/blob/master/lib/data/whd_data_dictionary.csv
Field map (WHISARD column to normalized output)
WHISARD column | Normalized field |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
sum of statute-level |
|
|
|
Notes:
There is no single total-CMP-dollar column in WHISARD.
cmp_assd_cntis a count of assessments; the dollar penalties live in per-statute columns (flsa_cmp_assd_amt,mspa_cmp_assd_amt,h1b_cmp_assd_amt, and so on).civil_penaltiessums those.back_wages_summaryaggregates client-side (the API does not expose a group-by), over up tomax_casesmatching rows (default 1000). Ifcappedis true the totals are a floor.Name search uses SQL
LIKEontrade_nmandlegal_name, wrapping the term as%term%. The term is uppercased defensively (WHD stores names largely in uppercase) andLIKEmetacharacters (%,_,\) are escaped so they match literally. See the caveats below.
Install
Nothing to clone. Point your MCP client at it and npm fetches it on first run:
{
"mcpServers": {
"wagewatch": {
"command": "npx",
"args": ["-y", "@haksanlulz/mcp-wagewatch"],
"env": { "DOL_API_KEY": "your-dol-key" }
}
}
}git clone https://github.com/haksanlulz/mcp-wagewatch
cd mcp-wagewatch
npm install
npm run build # emits dist/; the published bin is dist/index.jsnpm start runs the TypeScript directly via tsx without building.
API key
Register for a free DOL Open Data API key at https://dataportal.dol.gov/registration, then expose it as DOL_API_KEY:
export DOL_API_KEY=your-key-here # macOS / Linux
setx DOL_API_KEY your-key-here # Windows (new shells)Without the key the tools return an error naming the variable and the key-signup URL. The key is never logged.
Response shape
employer_violations with { "employer": "tyson", "state": "AR", "limit": 1 } returns this shape. Values are illustrative (test-fixture data, not a live capture — see the caveats below):
{
"query": { "employer": "tyson", "state": "AR" },
"count": 1,
"cases": [
{
"case_id": "1234567",
"employer": "TYSON FOODS INC",
"legal_name": "TYSON FOODS INCORPORATED",
"location": { "street": "2200 DON TYSON PKWY", "city": "SPRINGDALE", "state": "AR", "zip": "72762" },
"naics_code": "311615",
"naics_description": "Poultry Processing",
"findings_start_date": "2021-01-01",
"findings_end_date": "2022-01-01",
"back_wages": 150000.5,
"civil_penalties": 7500,
"employees_affected": 88,
"violations": 12
}
],
"data_currency": {
"newest_findings_end_date": "2022-01-01",
"note": "WHD publishes concluded investigations on a lag. These are historical enforcement records, not an employer's present compliance state, and an empty result means no concluded published case was found — not that none exists."
}
}data_currency is attached to every response and is computed from the rows
actually returned, never from the clock: an answer is exactly as current as its
newest record. When a result set carries no dates,
newest_findings_end_date is null rather than absent.
Then pass a case_id to case_detail for the per-statute breakdown.
Caveats
The metadata endpoint is key-gated and this was built without a key, so:
The column names are checked against the published WHISARD data dictionary (table
whd_whisard) and the dataset description, not against the liveWHD/enforcementmetadata endpoint (which requires the key). The v4enforcementendpoint is the same underlying WHISARD data, so the names are expected to match, but the exact live field list is unconfirmed. The normalizer is defensive: unknown-shaped values coerce tonullrather than throwing, and the CMP total scans every*_cmp_assd_amtcolumn present.LIKEcase-sensitivity on the DOL endpoint is unconfirmed, so the search term is uppercased defensively before the%term%wrap (WHD stores names largely in uppercase) andLIKEmetacharacters are escaped to match literally. If name searches still under-return, casing on the endpoint is the place to look.Run
npm run smokewith a real key to confirm field names and behavior end to end before relying on output.
Develop
npm test # vitest, fetch mocked with the documented response shapes (no key needed)
npm run smoke # one live call per tool (needs DOL_API_KEY; skips cleanly without)
npm run typecheckAI assistance
This project was built with AI assistance (Claude). Correctness was established by the mocked vitest suite (a real MCP client/server pair over an in-memory transport, fetch stubbed with the documented DOL response shapes) plus npm run typecheck — not by live API calls; the caveats above scope what stays unconfirmed until npm run smoke runs with a real key. The author reviewed the code and is accountable for it.
License
MIT. See LICENSE. Public U.S. government data from the U.S. Department of Labor. Unofficial, not affiliated with DOL.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityCmaintenanceUS + EU salary benchmarking, pay transparency compliance, and semantic endpoints. 1,400+ US occupations, 28 EU countries. MCP server for AI agents.Last updatedMIT
- FlicenseBqualityDmaintenanceTypeScript MCP server for accessing Department of Labor enforcement data, OSHA inspections, and SAM.gov contract opportunities via natural language queries.Last updated28
- AlicenseAqualityAmaintenanceMCP server for NYC real estate due diligence. Lets Claude query 22+ NYC public-record databases — DOB/HPD/ECB violations, ACRIS deeds, DOF sales, 311 complaints, FDNY incidents, NYPD complaints, marshal evictions, PLUTO, rent stabilization — in plain English.Last updated186MIT
- AlicenseAqualityBmaintenanceMCP server for the Workplace Gender Equality Agency (WGEA) per-employer dataset. Plain-English access to workforce composition, manager movements, pay-gap actions, parental leave, flexible work, and harm-prevention policies for every Australian employer with 100+ employees. CC-BY 3.0 AU.Last updated6MIT
Related MCP Connectors
MCP server for nonprofit financials via ProPublica — IRS Form 990 data for 1.8M+ nonprofits.
Fetch US Bureau of Labor Statistics data — CPI, unemployment, wages, JOLTS, and more via MCP.
MCP server for US Treasury Fiscal Data — debt, interest rates, exchange rates, and spending.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/haksanlulz/mcp-wagewatch'
If you have feedback or need assistance with the MCP directory API, please join our Discord server