CareerOneStop

live JobsGovernment

CareerOneStop MCP — US occupation details, wages, and salary comparisons from the Department of Labor. BYO CareerOneStop userId:token.

3 tools
0ms auth
free tier 50 calls/day

Tools

careeronestop_salary

What does <occupation> pay in <location> — wage percentiles (10th/25th/median/75th/90th, hourly + annual) for a U.S. occupation from the Dept. of Labor CareerOneStop API. Accepts an O*NET/SOC title or

No parameters required.

Try it
careeronestop_occupation

Occupation detail (tasks, outlook, typical education) for <occupation> from the Dept. of Labor CareerOneStop / O*NET data. Example: careeronestop_occupation({ occupation: "Registered Nurses", _apiKey:

No parameters required.

Try it
careeronestop_compare_salary

Compare salaries across occupations — side-by-side wage data for multiple U.S. occupations from the Dept. of Labor CareerOneStop API. Example: careeronestop_compare_salary({ occupations: "Registered N

No parameters required.

Try it

Test with curl

The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.

List available tools
bash
curl -X POST https://gateway.pipeworx.io/careeronestop/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
Call a tool
bash
curl -X POST https://gateway.pipeworx.io/careeronestop/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"careeronestop_salary","arguments":{}}}'

Use with the SDK

Install @pipeworx/sdk to call tools from any TypeScript/Node project.

TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("careeronestop_salary", {});
ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("careeronestop mcp — us occupation details, wages, and salary comparisons from the department of labor");