search

Pack: adzuna · Endpoint: https://gateway.pipeworx.io/adzuna/mcp

Search jobs in a country. country is required (ISO-style: gb, us, ca, de, fr, …).

Parameters

NameTypeRequiredDescription
countrystringyesgb, us, ca, de, fr, …
whatstringnoFree-text query (title + description)
what_phrasestringnoExact-phrase variant of what
wherestringnoLocation (city, region)
distancenumbernoSearch radius from where, in km
results_per_pagenumberno1-50 (default 20)
pagenumberno1-based page (default 1)
salary_minnumbernoLower bound, in local currency
salary_maxnumbernoUpper bound
full_timebooleanno
permanentbooleanno
sortstringnodefault | hybrid | date | salary | relevance
max_days_oldnumbernoRestrict to jobs posted in the last N days

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":"search","arguments":{}}}'

Response shape

FieldTypeDescription
resultsarrayList of job postings
countnumberTotal matching jobs
mean_salarynumberMean salary for results
Full JSON Schema
{
  "type": "object",
  "properties": {
    "results": {
      "type": "array",
      "description": "List of job postings",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Job ID"
          },
          "title": {
            "type": "string",
            "description": "Job title"
          },
          "company": {
            "type": "object",
            "properties": {
              "display_name": {
                "type": "string",
                "description": "Company name"
              }
            }
          },
          "description": {
            "type": "string",
            "description": "Job description"
          },
          "location": {
            "type": "object",
            "properties": {
              "display_name": {
                "type": "string",
                "description": "Location"
              }
            }
          },
          "salary_min": {
            "type": "number",
            "description": "Minimum salary"
          },
          "salary_max": {
            "type": "number",
            "description": "Maximum salary"
          },
          "salary_currency": {
            "type": "string",
            "description": "Currency code"
          },
          "created": {
            "type": "string",
            "description": "Creation timestamp"
          },
          "redirect_url": {
            "type": "string",
            "description": "Job posting URL"
          }
        }
      }
    },
    "count": {
      "type": "number",
      "description": "Total matching jobs"
    },
    "mean_salary": {
      "type": "number",
      "description": "Mean salary for results"
    }
  }
}

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.

Regenerated from source · build May 21, 2026