categories

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

Adzuna’s normalized job-category list for a country (engineering / sales / healthcare / etc.). Use to enumerate categories before filtering history / regional_stats by category.

Parameters

NameTypeRequiredDescription
countrystringyes

Example call

Arguments

{
  "country": "gb"
}

curl

curl -X POST https://gateway.pipeworx.io/adzuna/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"categories","arguments":{"country":"gb"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('categories', {
  "country": "gb"
});

More examples

{
  "country": "us"
}

Response shape

FieldTypeDescription
categoriesarrayJob categories
Full JSON Schema
{
  "type": "object",
  "properties": {
    "categories": {
      "type": "array",
      "description": "Job categories",
      "items": {
        "type": "object",
        "properties": {
          "tag": {
            "type": "string",
            "description": "Category tag identifier"
          },
          "display_name": {
            "type": "string",
            "description": "Category display name"
          }
        }
      }
    }
  }
}

Connect

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

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

See Getting Started for client-specific install steps.

Regenerated from source · build June 12, 2026