Adzuna

liveJobsEconomics

Global job-board aggregator — ~1.5M jobs across 16 countries + salary histograms, top companies, historical volume / wage data.

6tools
0msauth
free tier50 calls/day
🔑Authentication

Platform key handled by Pipeworx. BYO format: ?_apiKey=<app_id>:<app_key>.

Config with credentials
{
  "mcpServers": {
    "pipeworx-adzuna": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/adzuna/mcp?_apiKey=your_app_id:your_app_key"
      ]
    }
  }
}

Tools

categoriesrequired: country

Normalized job categories.

Parameters
NameTypeDescription
countryreqstring
Try it
salary_histogramrequired: country

Wage distribution.

Parameters
NameTypeDescription
countryreqstring
whatoptstring
whereoptstring
location_filteroptstring
Try it
top_companiesrequired: country

Top hiring companies for a filter.

Parameters
NameTypeDescription
countryreqstring
whatoptstring
whereoptstring
Try it
historyrequired: country

Historical monthly job volume + mean salary.

Parameters
NameTypeDescription
countryreqstring
monthsoptnumber
locationoptstring
categoryoptstring
Try it
regional_statsrequired: country

Current job counts by region.

Parameters
NameTypeDescription
countryreqstring
location_filteroptstring
categoryoptstring
Try it

Test with curl

The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.

List available tools
bash
curl -X POST https://gateway.pipeworx.io/adzuna/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
Call a tool
bash
curl -X POST https://gateway.pipeworx.io/adzuna/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"search","arguments":{"country": "US"}}}'

Use with the SDK

Install @pipeworx/sdk to call tools from any TypeScript/Node project.

TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("search", {"country":"example"});
ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("global job-board aggregator — ~1");