salary_histogram
Pack: adzuna · Endpoint: https://gateway.pipeworx.io/adzuna/mcp
Wage distribution for jobs matching a query.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
country | string | yes | |
what | string | no | |
where | string | no | |
location_filter | string | no | Adzuna 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
| Field | Type | Description |
|---|---|---|
histogram | array | Salary distribution buckets |
currency | string | Salary 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.