
Connects Claude to Adzuna's global job board aggregator across multiple countries. You get six tools: search jobs by country code (us, gb, de, etc.), pull normalized category lists, check salary histograms for specific queries, find top hiring companies, fetch historical job volume and wage trends, and break down openings by region. Useful when you need live employment market data for research, salary benchmarking, or building job-related features. Part of the Pipeworx gateway, so you can either hit the dedicated Adzuna endpoint or connect to the full 250+ source gateway and use the ask_pipeworx wrapper to query in plain English instead of calling tools directly.
Adzuna MCP — global job-board aggregator (~1.5M live jobs across 16 countries). Free tier: 250 calls/month.
Part of Pipeworx — an MCP gateway connecting AI agents to 1476+ live data sources.
search(country, what?, where?, distance?, results_per_page?, page?, salary_min?, salary_max?, full_time?, permanent?, sort?, max_days_old?)categories(country) — Adzuna's normalized job categoriessalary_histogram(country, what?, where?, location_filter?) — wage distributiontop_companies(country, what?, where?) — companies posting most jobs matching the filterhistory(country, months?, location?, category?) — historical job-volume / mean-salary time seriesregional_stats(country, location_filter?, category?) — current jobs by regionAdzuna uses two query params: app_id and app_key. Get both at https://developer.adzuna.com/.
PLATFORM_ADZUNA_KEY (format <app_id>:<app_key>)?_apiKey=<app_id>:<app_key>gb (UK), us, ca, de, fr, at, nl, pl, it, es, ru, br, in, mx, nz, au, sg, za.
https://api.adzuna.com/v1/api/jobs/<country>/...
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"adzuna": {
"url": "https://gateway.pipeworx.io/adzuna/mcp"
}
}
}
tools/list at https://gateway.pipeworx.io/adzuna/mcp returns the tools in the table
above plus the shared Pipeworx meta-tools — ask_pipeworx,
discover_tools, search_within, remember/recall and the rest of the
gateway-wide set. So the tool count you see is larger than this table: a
single-pack endpoint currently lists roughly 30 shared tools alongside the
pack's own. The connection's initialize response states its exact scope, and
is the authoritative answer for a given day.
This is deliberate, not multiplexing by accident. The meta-tools are what let a
scoped connection answer a question this pack does not cover — via
ask_pipeworx, which routes across the whole catalog — without you adding a
second MCP server. There is currently no way to mount a pack endpoint without
them; if the extra schemas cost you more context than the routing is worth,
connect to the full gateway once rather than to several pack endpoints.
Or connect to the full Pipeworx gateway to get every pack's tools listed directly, instead of just this one's:
{
"mcpServers": {
"pipeworx": {
"url": "https://gateway.pipeworx.io/mcp"
}
}
}
Both URLs reach the same gateway and the same 1476+ data sources. The
only difference is which pack's tools are listed directly; ask_pipeworx
reaches all of them from either one.
Instead of calling tools directly, you can ask questions in plain English — this works on the pack endpoint above as well as on the full gateway:
ask_pipeworx({ question: "your question about Adzuna data" })
The gateway picks the right tool and fills the arguments automatically.
MIT