Skip to main content
Glama
fabioba

mcp-adzuna

by fabioba

mcp-adzuna

An MCP (Model Context Protocol) server that exposes Adzuna's job search and salary analytics APIs as tools.

This repo is server-only, by design: it's meant to be pulled into other AI systems/repos as a reusable dependency, not run standalone. The client half of MCP — connecting to a server, listing its tools, and dispatching tool calls from an LLM — is generic and already provided by whatever is hosting your agent (Claude Code, Claude Desktop, or the MCP client library inside your own agent stack). Point that host at this server (see below) rather than writing a bespoke client per project. A minimal demo client is included under example/ purely to show the protocol working end-to-end — not as a reusable client library for production use.

Architecture

MCP defines three roles: a host app that embeds an LLM (Claude Code, Claude Desktop, or your own agent stack), an MCP client living inside that host which speaks the MCP wire protocol (tool discovery, tools/call, JSON-RPC framing), and an MCP server that exposes tools and responds to protocol messages without knowing who's calling it. This repo is only the last one — the host and its MCP client are supplied by whoever consumes this server (see Using from another repo).

Internally, the server is split into two layers with no knowledge of each other's domain:

LLM decides to call a tool
        │
        ▼
Host app (Claude Code / Claude Desktop / your agent stack)
        │  spawns `mcp-adzuna` as a subprocess, speaks MCP over stdio
        ▼
MCP Client (built into the host — see example/ for a minimal standalone one)
        │  tools/call { name: "search_jobs", arguments: {...} }
        ▼
┌─────────────────────────── this repo ───────────────────────────┐
│  MCP Server (server.py: the `mcp` object)                        │
│    - owns the stdio loop, tool registry, JSON schemas            │
│    - dispatches to the matching @mcp.tool() function             │
│           │                                                      │
│           ▼                                                      │
│  search_jobs(country=..., what=...)                              │
│           │  plain Python function call, no protocol involved    │
│           ▼                                                      │
│  AdzunaAPI.search(...)   (client.py)                             │
│    - builds query params, calls httpx, strips __CLASS__ noise    │
└────────────────────────────┼─────────────────────────────────────┘
                              ▼
                    Adzuna's REST API (api.adzuna.com)
  • server.py is the only file that speaks MCP: tool names, docstrings-as-descriptions, type hints-as-JSON-schema.

  • client.py's AdzunaAPI is a plain REST wrapper around Adzuna's HTTP API — it has no knowledge that MCP exists. It's deliberately not named AdzunaClient, to avoid confusion with the "MCP client" role above; it's a client of Adzuna's API in the ordinary SDK sense (like httpx.Client or boto3.client(...)), not an MCP client.

This split means AdzunaAPI is independently testable (tests/test_client.py runs against a mocked HTTP transport with zero MCP runtime involved) and independently reusable (importable in a plain script with no MCP dependency dragged in).

Related MCP server: trackly-cli

Tools

Tool

Adzuna endpoint

What it does

search_jobs

/jobs/{country}/search/{page}

Search job listings by keyword, location, salary, category, etc.

list_categories

/jobs/{country}/categories

List job category tags (e.g. it-jobs, sales-jobs).

salary_histogram

/jobs/{country}/histogram

Distribution of salaries for a search as a histogram.

top_companies

/jobs/{country}/top_companies

Top 5 employers by vacancy count for a search.

regional_data

/jobs/{country}/geodata

Vacancy counts per sub-region of a location.

historical_salary

/jobs/{country}/history

Average salary by month, over time.

api_version

/version

Current Adzuna API version (useful for checking connectivity/auth).

Setup

  1. Get a free app_id/app_key at developer.adzuna.com/signup.

  2. Install the package:

    pip install -e .
  3. Set your credentials:

    cp .env.example .env
    # edit .env and fill in ADZUNA_APP_ID / ADZUNA_APP_KEY

Running standalone

export ADZUNA_APP_ID=... ADZUNA_APP_KEY=...
mcp-adzuna

This starts the server on stdio, the standard transport for local MCP clients.

Using from another repo

Since this package isn't published to PyPI, other repos can run it straight from GitHub with uv's uvx — no local clone or install step needed in the consuming repo:

{
  "mcpServers": {
    "adzuna": {
      "command": "uvx",
      "args": ["--from", "git+https://github.com/fabioba/mcp-adzuna.git", "mcp-adzuna"],
      "env": {
        "ADZUNA_APP_ID": "your-app-id",
        "ADZUNA_APP_KEY": "your-app-key"
      }
    }
  }
}

Or, with Claude Code's CLI:

claude mcp add adzuna --env ADZUNA_APP_ID=your-app-id --env ADZUNA_APP_KEY=your-app-key \
  -- uvx --from git+https://github.com/fabioba/mcp-adzuna.git mcp-adzuna

uv/uvx will fetch and cache the package from the git repo on first run, and re-fetch when the pinned ref changes — pin to a tag or commit (git+https://...@v0.1.0) once you cut a release, so consuming repos don't pick up breaking changes silently.

If a consuming repo already manages its own Python environment, adding mcp-adzuna @ git+https://github.com/fabioba/mcp-adzuna.git to its pyproject.toml/requirements.txt dependencies works the same way, and mcp-adzuna becomes an installed console-script entry point in that environment's mcpServers config instead.

Using locally with Claude Code / Claude Desktop

For local development on this repo itself, add it to your MCP config using the local install (see Setup) instead:

{
  "mcpServers": {
    "adzuna": {
      "command": "mcp-adzuna",
      "env": {
        "ADZUNA_APP_ID": "your-app-id",
        "ADZUNA_APP_KEY": "your-app-key"
      }
    }
  }
}

Example client

example/ contains a minimal MCP client that spawns this server and calls a tool, to see the protocol work end-to-end without setting up a full MCP host first:

pip install -e ".[dev]"
python example/client.py

See example/README.md for what it demonstrates.

Development

pip install -e ".[dev]"
pytest

Tests run against a mocked HTTP transport (httpx.MockTransport) and don't require real Adzuna credentials.

Available Tools

7 tools
api_versionA

Get the current Adzuna API version - useful for debugging connectivity/auth.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A4.2/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden. It implies a read-only operation via 'Get' and adds the debugging context, but it does not disclose what exactly is returned (e.g., version number format) or whether it incurs rate limits. Acceptable but not rich.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

A single, front-loaded sentence delivers all essential information with no filler. It names the action, the target resource, and the practical use case efficiently.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a zero-parameter, no-output-schema tool, the description is sufficient: it states what the tool does and why to use it. It could be improved by specifying the expected return value (e.g., version string), but overall it is complete enough for its simplicity.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The tool has zero parameters, so schema coverage is effectively 100%. No parameter documentation is needed, and the description does not attempt to add irrelevant detail. Baseline of 4 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's function with a specific verb ('Get') and resource ('current Adzuna API version'). It stands apart from sibling data-retrieval tools by identifying itself as a meta/debugging endpoint.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description notes the tool is 'useful for debugging connectivity/auth', providing clear usage context. It does not explicitly mention alternatives, but none of the sibling tools serve this purpose, so this guidance is adequate.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

historical_salaryA

Get average salary by month for a category and/or location, over time.

Returned keys are "YYYY-MM" strings; order is not guaranteed by the API.

country: ISO country code, e.g. "gb", "us", "de". category: a category tag as returned by list_categories. months: how many months of history to return. location: a hierarchical place, most general first, e.g. ["UK", "London"]. See regional_data for how to discover valid values.

ParametersJSON Schema
NameRequiredDescriptionDefault
monthsNo
countryYes
categoryNo
locationNo

TDQS

A4.5/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the burden of behavioral disclosure. It provides useful behavioral details: returned keys are 'YYYY-MM' strings and 'order is not guaranteed by the API.' It also clarifies parameter semantics (e.g., country codes, hierarchical location paths). It does not mention rate limits, error behavior, or currency, but for a read-only query tool the disclosed information is substantive.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is concise and well-structured: a one-sentence purpose, followed by the return-key behavior, then a compact parameter list. Every sentence adds value, and the most important information is front-loaded.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a 4-parameter tool with no output schema and no annotations, the description covers the essential aspects: purpose, parameter formats, return-key format, and how to discover valid values via regional_data. However, it does not describe the value type/currency of the salaries or any error/missing-data behavior, which would make it fully complete.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, so the description fully compensates by explaining each parameter with types, examples, and source references: 'country: ISO country code, e.g. "gb", "us", "de"', 'category: a category tag as returned by list_categories', 'months: how many months of history to return', and 'location: a hierarchical place, most general first, e.g. ["UK", "London"]'. This adds significant meaning beyond the raw schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description opens with a specific verb and resource: 'Get average salary by month for a category and/or location, over time.' It clearly defines the tool's scope and differentiates it from siblings like salary_histogram (which likely provides a distribution, not time series) and regional_data (which is for discovering regions, not salary history).

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides clear context on what the tool does and how filters work, and it references sibling tools: 'category: a category tag as returned by list_categories' and 'See regional_data for how to discover valid values.' It does not explicitly state when NOT to use this tool versus salary_histogram or other siblings, but the purpose is clear enough to infer appropriate usage.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

list_categoriesA

List Adzuna's job category tags for a country (e.g. "it-jobs", "sales-jobs").

country: ISO country code, e.g. "gb", "us", "de". Category tags returned here can be passed as the category param to search_jobs, salary_histogram, top_companies, regional_data, and historical_salary.

ParametersJSON Schema
NameRequiredDescriptionDefault
countryYes

TDQS

A4.4/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the full burden. It implies a read-only listing operation via the verb 'list' and gives examples of the returned tags, but does not explicitly disclose auth requirements, rate limits, or handling of invalid country codes. This is adequate but not rich.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is compact and front-loaded: two sentences state the purpose and parameter format, and one sentence explains downstream usage. Every sentence earns its place with no redundancy.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Despite lacking an output schema, the description is complete for this simple tool. It covers purpose, parameter semantics, and how the results integrate with five sibling tools, making it clear what the agent can expect and how to use the response.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema for the only parameter 'country' provides just its name and type. The description compensates by specifying the ISO country code format and giving concrete examples like 'gb', 'us', 'de', thereby adding significant meaning beyond the schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool lists job category tags for a country, with examples like 'it-jobs' and 'sales-jobs'. It distinguishes itself from sibling tools by being the source for category tags used by various search and aggregation tools.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description explains that the returned tags can be passed as the `category` param to search_jobs, salary_histogram, top_companies, regional_data, and historical_salary, giving clear context for when to use this tool. It doesn't explicitly say when not to use it, but the consumer relationships are clear.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

regional_dataA

Get vacancy counts for each sub-region of a given location.

Also useful for discovering the exact area strings Adzuna expects for the location param on other tools - each returned location includes an area array you can reuse verbatim.

country: ISO country code, e.g. "gb", "us", "de". category: a category tag as returned by list_categories. location: a hierarchical place, most general first, e.g. ["UK", "West Midlands"]. Omit to get the country's top-level regions.

ParametersJSON Schema
NameRequiredDescriptionDefault
countryYes
categoryNo
locationNo

TDQS

A4.5/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the burden of behavioral disclosure. It reveals that each returned location includes an `area` array to reuse verbatim and explains the effect of omitting `location`. It doesn't mention output shape beyond that or any limitations, but it's sufficient for a simple read-only retrieval tool.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Purpose is front-loaded in the first sentence, followed by a practical note and compact parameter descriptions. Every sentence adds value, with no filler.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The description covers the core functionality, parameter semantics, and a bonus usage tip. It doesn't elaborate on the full response format or possible error conditions, but for a straightforward regional-data tool, it's adequately complete.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

All three parameters are explained beyond the bare schema: `country` gets ISO examples, `category` is tied to `list_categories`, and `location` is described as hierarchical with an example and behavior when omitted. This fully compensates for the 0% schema description coverage.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

States exactly what it does with a specific verb and resource: 'Get vacancy counts for each sub-region of a given location.' Also distinguishes itself from siblings by focusing on regional breakdowns and adding a secondary purpose of discovering reusable `area` strings for other tools.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Provides clear usage context: when you need sub-regional vacancy counts or exact `area` strings for the `location` param on other tools. It also explains that omitting `location` gives top-level regions, but it doesn't explicitly contrast with sibling tools or state when not to use it.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

salary_histogramA

Get the current distribution of salaries for a job search as a histogram.

Each key in the returned histogram is the lower bound of a salary band; the value is the number of vacancies whose salary falls in that band.

country: ISO country code, e.g. "gb", "us", "de". what: keywords to filter jobs by (AND semantics, all words must match). category: a category tag as returned by list_categories. location: a hierarchical place, most general first, e.g. ["UK", "London"]. See regional_data for how to discover valid values.

ParametersJSON Schema
NameRequiredDescriptionDefault
whatNo
countryYes
categoryNo
locationNo

TDQS

A4.1/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the full burden. It explains the return format (keys are lower bounds, values are vacancy counts) and parameter semantics including AND logic. However, it does not specify salary band widths, how vacancies without salaries are handled, or the recency of 'current' data, leaving some behavioral assumptions unstated.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is concise and well-structured. It opens with the purpose, then describes the return structure, followed by a clear per-parameter list. Every sentence contributes useful information, with no redundancy or fluff.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a tool with four parameters and no output schema, the description covers the core behavior, return format, and parameter semantics thoroughly, including cross-references for valid values. It falls short only in not describing salary band boundaries or edge-case behavior (e.g., empty results), but these are minor within the tool's simplicity.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, so the description fully compensates. It explains each of the four parameters: country with ISO examples, what with AND semantics, category as a reference to list_categories, and location as a hierarchical list with an example and pointer to regional_data. This exceeds what the schema provides.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose: 'Get the current distribution of salaries for a job search as a histogram.' The verb 'get' and resource 'salary distribution' are specific, and the qualifier 'current' distinguishes it from the sibling 'historical_salary'.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage when a current salary histogram is needed, and parameter semantics provide context. However, it does not explicitly contrast with alternatives like historical_salary or search_jobs, nor does it state when not to use this tool. The only cross-reference is 'See regional_data' for location discovery, which is about parameter values, not tool selection.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

search_jobsA

Search Adzuna's job listings.

country: ISO country code Adzuna covers, e.g. "gb", "us", "de", "fr", "it". what: keywords where ALL words must match (AND). For multi-word roles like "Senior Lead Data Engineer" this can silently return zero results; use what_or instead to match ANY of the words. what_or: keywords where ANY word may match (OR) - higher recall than what. what_and: same as what (all words must match), explicit alternate name. what_phrase: an exact phrase that must appear in the title or description. what_exclude: keywords to exclude from results. title_only: keywords to match, restricted to the job title only. where: geographic centre of the search - a city, region, or postal code (NOT a country name; combine with country for that). A bad value here silently returns no results rather than erroring. distance: search radius in km around where. Defaults to 5km if omitted. location: a hierarchical place, most general first, e.g. ["UK", "South East England", "Buckinghamshire"]. See regional_data for how to discover valid values. category: a category tag as returned by list_categories. sort_by / sort_dir: how to order results (e.g. sort_by="salary"). salary_min / salary_max: salary bounds to filter on. salary_include_unknown: also include jobs with no listed salary. full_time / part_time / contract / permanent: filter by employment type. results_per_page: number of results per page (page size), default is set server-side by Adzuna if omitted.

ParametersJSON Schema
NameRequiredDescriptionDefault
pageNo
whatNo
whereNo
companyNo
countryYes
sort_byNo
what_orNo
categoryNo
contractNo
distanceNo
locationNo
sort_dirNo
what_andNo
full_timeNo
part_timeNo
permanentNo
salary_maxNo
salary_minNo
title_onlyNo
what_phraseNo
max_days_oldNo
what_excludeNo
results_per_pageNo
salary_include_unknownNo

TDQS

A4.1/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the full transparency burden. It discloses key behaviors: the AND vs OR matching semantics, silent zero-result failures for bad what and where values, and the default distance of 5km. It does not mention return format, pagination behavior, or rate limits, which would be useful but not strictly required for a read-only search.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is well-structured as a list of parameters, each earning its place with specific, actionable information. It is front-loaded with the purpose statement, and every line adds value without unnecessary fluff. The length is justified by the large parameter count.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The description covers most parameters and provides important caveats, but it omits the return value structure, and a few parameters (page, company, max_days_old) are not described. Given the absence of an output schema, explaining what the tool returns would improve completeness. Overall, it is a strong description for a complex search tool.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, so the description must compensate. It explains nearly all 24 parameters, including nuanced distinctions among what, what_or, what_and, what_phrase, what_exclude, and title_only, and documents important behavioral caveats like silent failures and defaults. Only a few parameters (page, company, max_days_old) are left unexplained, which is a minor gap given the breadth covered.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description opens with 'Search Adzuna's job listings,' which clearly identifies the action (search) and resource (Adzuna's job listings). It does not explicitly compare itself to sibling tools like salary_histogram or top_companies, so it lacks explicit differentiation for purpose.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description offers internal parameter guidance, e.g., advising to use what_or instead of what for multi-word roles to avoid silent zero results, and references regional_data and list_categories for discovering valid values. However, it does not provide guidance on when to use search_jobs versus other sibling tools such as salary_histogram or top_companies.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

top_companiesA

Get a leaderboard of the top 5 employers by number of vacancies.

country: ISO country code, e.g. "gb", "us", "de". what: keywords to filter jobs by (AND semantics, all words must match). category: a category tag as returned by list_categories. location: a hierarchical place, most general first, e.g. ["UK", "London"]. See regional_data for how to discover valid values.

ParametersJSON Schema
NameRequiredDescriptionDefault
whatNo
countryYes
categoryNo
locationNo

TDQS

A4.5/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the full burden. It discloses the key behavioral trait of returning only the top 5 employers and explains filter semantics (e.g., AND matching for keywords). It also provides helpful cross-references for parameter discovery. Some details like output structure or edge-case handling are omitted, but the description is adequate for a read-only aggregation tool.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is concise and well-structured: a one-sentence purpose, followed by a compact bullet list of parameters. Every sentence provides useful information, with no redundancy or wasted words.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's simplicity (4 params, 1 required, no output schema), the description covers all necessary input semantics and examples. It could be slightly more explicit about return format (e.g., a list of company names with vacancy counts), but the title and first sentence already convey the core output. Overall, it is sufficiently complete for an agent to use the tool correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema has 0% description coverage, but the tool description fully compensates by explaining every parameter with concrete examples: country codes ('gb', 'us', 'de'), keyword AND semantics, category source, and hierarchical location arrays. This adds significant meaning beyond the raw schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's function: 'Get a leaderboard of the top 5 employers by number of vacancies.' This is a specific verb+resource combination that distinguishes it from siblings like search_jobs or salary_histogram.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description gives clear context for when to use the tool, specifying required (country) and optional filters (what, category, location) with examples. It also references related tools (list_categories, regional_data) for discovering valid values. However, it lacks explicit exclusions or alternatives, so it does not fully meet the 'when not to use' criterion.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections.

  1. 7 tool updatesv0.1.0
    • First observedapi_version
    • First observedhistorical_salary
    • First observedlist_categories
    • First observedregional_data
    • First observedsalary_histogram
    • First observedsearch_jobs
    • First observedtop_companies

TDQS

A4.2/5.0

Scored across 7 tools

Disambiguation5/5

Each tool targets a distinct aspect: job search, category listing, salary distribution, top companies, regional breakdown, historical salary, and API version. There is no overlap, and descriptions clearly differentiate each tool's purpose.

Naming Consistency3/5

Tool names follow a mix of verb_noun (search_jobs, list_categories) and noun_phrase (salary_histogram, top_companies, regional_data, historical_salary, api_version) patterns. All are lowercase with underscores, but the lack of a consistent verb prefix makes the naming pattern inconsistent.

Tool Count5/5

With 7 tools, the server is well-scoped for a job search and analytics domain. Each tool serves a distinct purpose without redundancy or bloat.

Completeness4/5

The server covers the core job search workflow, including filtering, category discovery, salary analysis, and regional breakdowns. However, there is no explicit tool for fetching a single job's full details or for paginating beyond setting a page size, leaving minor gaps in the lifecycle.

Maintenance

ActivitySlowing
ResponsivenessNo issues

Related MCP Connectors

Related MCP Servers

  • A
    license
    Not graded
    quality
    A
    maintenance
    MCP server that exposes job search data from multiple boards, enabling clients to query and manage job listings via natural language.
    7
    MIT
  • A
    license
    Not graded
    quality
    A
    maintenance
    MCP server for job search and application tracking, enabling AI agents to search jobs, get details, manage applications, and find contacts across 128K+ jobs and 1,900+ companies.
    497 npm
    3
    MIT
  • A
    license
    A
    quality
    C
    maintenance
    MCP server that scours job openings from public, ToS-clean sources (Greenhouse, Lever, Ashby, HN, RemoteOK, Adzuna, USAJobs) and provides tools for job search, company listings, and salary context.
    4
    MIT
  • A
    license
    A
    quality
    A
    maintenance
    MCP server for interacting with the CleanJobData Job API, enabling job searches, company lookups, location suggestions, and candidate profile prompts.
    5
    MIT