salary_histogram

Pack: adzuna · Endpoint: https://gateway.pipeworx.io/adzuna/mcp

Wage distribution for jobs matching a query.

Parameters

NameTypeRequiredDescription
countrystringyes
whatstringno
wherestringno
location_filterstringnoAdzuna location id (e.g. “London”)

Example call

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":"salary_histogram","arguments":{}}}'

Response shape

FieldTypeDescription
histogramarraySalary distribution buckets
currencystringSalary currency
Full JSON Schema
{
  "type": "object",
  "properties": {
    "histogram": {
      "type": "array",
      "description": "Salary distribution buckets",
      "items": {
        "type": "object",
        "properties": {
          "min_salary": {
            "type": "number",
            "description": "Bucket lower bound"
          },
          "max_salary": {
            "type": "number",
            "description": "Bucket upper bound"
          },
          "count": {
            "type": "number",
            "description": "Jobs in this salary range"
          }
        }
      }
    },
    "currency": {
      "type": "string",
      "description": "Salary currency"
    }
  }
}

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 May 21, 2026