Adzuna
live JobsLaborGlobal 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
search
required: country Search jobs in a country.
Parameters
Name Type Description
country req string — what opt string — what_phrase opt string — where opt string — distance opt number — results_per_page opt number — page opt number — salary_min opt number — salary_max opt number — full_time opt boolean — permanent opt boolean — sort opt string — max_days_old opt number — Try it
Response
categories
required: country Normalized job categories.
Parameters
Name Type Description
country req string — Try it
Response
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
Response
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
Response
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
Response
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
Response
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");