top_companies
Pack: adzuna · Endpoint: https://gateway.pipeworx.io/adzuna/mcp
Companies posting the most jobs matching the filter.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
country | string | yes | |
what | string | no | |
where | 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":"top_companies","arguments":{}}}'
Response shape
| Field | Type | Description |
|---|---|---|
leaderboard | array | Top companies by job count |
Full JSON Schema
{
"type": "object",
"properties": {
"leaderboard": {
"type": "array",
"description": "Top companies by job count",
"items": {
"type": "object",
"properties": {
"display_name": {
"type": "string",
"description": "Company name"
},
"count": {
"type": "number",
"description": "Number of jobs posted"
}
}
}
}
}
}
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.