categories
Pack: adzuna · Endpoint: https://gateway.pipeworx.io/adzuna/mcp
Adzuna’s normalized job-category list for a country.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
country | string | yes |
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":"categories","arguments":{}}}'
Response shape
| Field | Type | Description |
|---|---|---|
categories | array | Job categories |
Full JSON Schema
{
"type": "object",
"properties": {
"categories": {
"type": "array",
"description": "Job categories",
"items": {
"type": "object",
"properties": {
"tag": {
"type": "string",
"description": "Category tag identifier"
},
"display_name": {
"type": "string",
"description": "Category display name"
}
}
}
}
}
}
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.