regional_stats
Pack: adzuna · Endpoint: https://gateway.pipeworx.io/adzuna/mcp
Current job counts by region.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
country | string | yes | |
location_filter | string | no | |
category | string | no |
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":"regional_stats","arguments":{}}}'
Response shape
| Field | Type | Description |
|---|---|---|
locations | array | Job counts by region |
Full JSON Schema
{
"type": "object",
"properties": {
"locations": {
"type": "array",
"description": "Job counts by region",
"items": {
"type": "object",
"properties": {
"location": {
"type": "object",
"properties": {
"display_name": {
"type": "string",
"description": "Region name"
}
}
},
"total_postings": {
"type": "number",
"description": "Job count in region"
}
}
}
}
}
}
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.