onet_search

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

Search occupations by keyword. Returns matching O*NET occupations with SOC code, title, and relevance score. Example: onet_search({ keyword: “data scientist”, _apiKey: “username:password” })

Parameters

NameTypeRequiredDescription
keywordstringyesSearch term — a job title, task, skill, or keyword, e.g. “nurse”, “python developer”
_apiKeystringyesONET credentials as “username:password” from a free ONET Web Services account (services.onetcenter.org/developer/signup)

Example call

Arguments

{
  "keyword": "data scientist",
  "_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_search","arguments":{"keyword":"data scientist","_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_search', {
  "keyword": "data scientist",
  "_apiKey": "your-onet-username:your-onet-password"
});

More examples

{
  "keyword": "nurse",
  "_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