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

NameTypeRequiredDescription
countrystringyes
monthsnumberno1-100 (default 12)
locationstringno
categorystringnoAdzuna 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

FieldTypeDescription
montharrayMonthly 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.

Regenerated from source · build July 6, 2026