careeronestop_salary

Pack: careeronestop · Endpoint: https://gateway.pipeworx.io/careeronestop/mcp

What does pay in — 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 code. Example: careeronestop_salary({ occupation: “Registered Nurses”, location: “TX”, _apiKey: “userId:token” })

Parameters

NameTypeRequiredDescription
occupationstringyesOccupation keyword, O*NET/SOC title, or code, e.g. “Registered Nurses” or “29-1141.00”
locationstringyesLocation: state (“TX”), “City, State” (“Reston, VA”), ZIP (“20191”), or “US” for national data
_apiKeystringyesCareerOneStop credentials as “userId:token” (free at

Example call

Arguments

{
  "occupation": "Registered Nurses",
  "location": "TX",
  "_apiKey": "your-careeronestop-userid:token"
}

curl

curl -X POST https://gateway.pipeworx.io/careeronestop/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"careeronestop_salary","arguments":{"occupation":"Registered Nurses","location":"TX","_apiKey":"your-careeronestop-userid:token"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('careeronestop_salary', {
  "occupation": "Registered Nurses",
  "location": "TX",
  "_apiKey": "your-careeronestop-userid:token"
});

More examples

{
  "occupation": "29-1141.00",
  "location": "New York, NY",
  "_apiKey": "your-careeronestop-userid:token"
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "careeronestop": {
      "url": "https://gateway.pipeworx.io/careeronestop/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build August 22, 2026