history
Pack: adzuna · Endpoint: https://gateway.pipeworx.io/adzuna/mcp
“Job market trends” / “hiring trends in [category]” / “salary trends for [role]” / “is [field] hiring more / less than last year” — historical monthly time series for job volume and mean salary in a country, optionally filtered by location and category. Use for labor-market analysis, recession indicators, hiring-cycle research.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
country | string | yes | |
months | number | no | 1-100 (default 12) |
location | string | no | |
category | string | no | Adzuna category tag (from categories tool) |
Example call
Arguments
{
"country": "gb",
"months": 24
}
curl
curl -X POST https://gateway.pipeworx.io/adzuna/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"history","arguments":{"country":"gb","months":24}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('history', {
"country": "gb",
"months": 24
});
More examples
{
"country": "us",
"location": "New York",
"category": "IT Jobs",
"months": 12
}
Response shape
| Field | Type | Description |
|---|---|---|
month | object | Average salary keyed by month, e.g. {“2026-07”: 42537.34}. An OBJECT map, not an array — verified against a live response. |
Full JSON Schema
{
"type": "object",
"properties": {
"month": {
"type": "object",
"description": "Average salary keyed by month, e.g. {\"2026-07\": 42537.34}. An OBJECT map, not an array — verified against a live response.",
"additionalProperties": {
"type": "number"
}
}
}
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"adzuna": {
"url": "https://gateway.pipeworx.io/adzuna/mcp"
}
}
}
See Getting Started for client-specific install steps.