Adzuna

live JobsLabor

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

6 tools
0ms auth
free tier 50 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

categories required: country

Normalized job categories.

Parameters
Name Type Description
country req string
Try it
salary_histogram required: country

Wage distribution.

Parameters
Name Type Description
country req string
what opt string
where opt string
location_filter opt string
Try it
top_companies required: country

Top hiring companies for a filter.

Parameters
Name Type Description
country req string
what opt string
where opt string
Try it
history required: country

Historical monthly job volume + mean salary.

Parameters
Name Type Description
country req string
months opt number
location opt string
category opt string
Try it
regional_stats required: country

Current job counts by region.

Parameters
Name Type Description
country req string
location_filter opt string
category opt string
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");