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 | array | Monthly time series data |
Full JSON Schema
{
"type": "object",
"properties": {
"month": {
"type": "array",
"description": "Monthly time series data",
"items": {
"type": "object",
"properties": {
"date": {
"type": "string",
"description": "Month in YYYY-MM format"
},
"avg_salary": {
"type": "number",
"description": "Average salary for month"
},
"posting_count": {
"type": "number",
"description": "Total jobs posted in month"
}
}
}
}
}
}
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.