careeronestop_occupation

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

Occupation detail (tasks, outlook, typical education) for from the Dept. of Labor CareerOneStop / O*NET data. Example: careeronestop_occupation({ occupation: “Registered Nurses”, _apiKey: “userId:token” })

Parameters

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

Example call

Arguments

{
  "occupation": "Registered Nurses",
  "_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_occupation","arguments":{"occupation":"Registered Nurses","_apiKey":"your-careeronestop-userid:token"}}}'

TypeScript (@pipeworx/sdk)

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

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

More examples

{
  "occupation": "Software Developers",
  "location": "CA",
  "_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