whd_employer
Pack: dol-whd · Endpoint: https://gateway.pipeworx.io/dol-whd/mcp
Full Wage & Hour enforcement history for one employer, with per-case detail and aggregate violation and back-wage figures across every concluded case. Matches the employer against both the registered trade name and the legal name and reports which one hit. Use to answer whether a company is a repeat wage-violation offender.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
employer | string | yes | Employer name, matched against trade name and legal name. |
limit | number | no | Cases to examine, 1-100 (default 100). |
Example call
Arguments
{
"employer": "Walmart"
}
curl
curl -X POST https://gateway.pipeworx.io/dol-whd/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"whd_employer","arguments":{"employer":"Walmart"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('whd_employer', {
"employer": "Walmart"
});
More examples
{
"employer": "Reliant Energy",
"limit": 25
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"dol-whd": {
"url": "https://gateway.pipeworx.io/dol-whd/mcp"
}
}
}
See Getting Started for client-specific install steps.