onet_occupation

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

Occupation detail for an O*NET-SOC code. Returns title, description, alternate names, and sample reported job titles. Example: onet_occupation({ code: “15-1252.00”, _apiKey: “username:password” })

Parameters

NameTypeRequiredDescription
codestringyesO*NET-SOC occupation code, e.g. “15-1252.00” (Software Developers). Get one from onet_search.
_apiKeystringyesO*NET credentials as “username:password” (services.onetcenter.org/developer/signup)

Example call

Arguments

{
  "code": "15-1252.00",
  "_apiKey": "your-onet-username:your-onet-password"
}

curl

curl -X POST https://gateway.pipeworx.io/onet/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"onet_occupation","arguments":{"code":"15-1252.00","_apiKey":"your-onet-username:your-onet-password"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('onet_occupation', {
  "code": "15-1252.00",
  "_apiKey": "your-onet-username:your-onet-password"
});

Connect

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

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

See Getting Started for client-specific install steps.

Regenerated from source · build August 22, 2026