salary_histogram
Pack: adzuna · Endpoint: https://gateway.pipeworx.io/adzuna/mcp
“What does [role] pay” / “salary distribution for [job]” / “average salary for [title] in [location]” / “wage histogram for [profession]” — wage distribution histogram for jobs matching a query. Use for salary benchmarking, comp negotiation research, market-rate analysis.
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
Arguments
{
"country": "gb",
"what": "data scientist",
"location_filter": "London"
}
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":"salary_histogram","arguments":{"country":"gb","what":"data scientist","location_filter":"London"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('salary_histogram', {
"country": "gb",
"what": "data scientist",
"location_filter": "London"
});
More examples
{
"country": "ca",
"what": "nurse",
"where": "Toronto"
}
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.