Adzuna
liveJobsEconomicsGlobal 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
searchrequired: countrySearch jobs in a country.
Parameters
NameTypeDescription
countryreqstring—whatoptstring—what_phraseoptstring—whereoptstring—distanceoptnumber—results_per_pageoptnumber—pageoptnumber—salary_minoptnumber—salary_maxoptnumber—full_timeoptboolean—permanentoptboolean—sortoptstring—max_days_oldoptnumber—Try it
Response
categoriesrequired: countryNormalized job categories.
Parameters
NameTypeDescription
countryreqstring—Try it
Response
salary_histogramrequired: countryWage distribution.
Parameters
NameTypeDescription
countryreqstring—whatoptstring—whereoptstring—location_filteroptstring—Try it
Response
top_companiesrequired: countryTop hiring companies for a filter.
Parameters
NameTypeDescription
countryreqstring—whatoptstring—whereoptstring—Try it
Response
historyrequired: countryHistorical monthly job volume + mean salary.
Parameters
NameTypeDescription
countryreqstring—monthsoptnumber—locationoptstring—categoryoptstring—Try it
Response
regional_statsrequired: countryCurrent job counts by region.
Parameters
NameTypeDescription
countryreqstring—location_filteroptstring—categoryoptstring—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");