Skip to main content
Glama

Voxcars (Portugal)

search_cars

Read-onlyIdempotent

Search current used-car listings for sale in Portugal. Use this whenever the user wants to find, compare or explore cars — by make, model, budget, mileage, fuel or district. Returns price, mileage, fuel, body and a citable listing URL, plus total: the exact number of listings matching the filters, which makes this tool usable to answer 'how many' questions. Listings are aggregated from stands and portals and refreshed daily; each result carries publishedAt. Prefer the broadest filters that answer the question and report total as a floor, not a census.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
fuelNoFuel type. GASOLINE = gasolina, ELECTRIC = eléctrico, HYBRID = full hybrid, PLUG_IN_HYBRID = PHEV.
makeNoMake slug (e.g. toyota, bmw, volkswagen). Not free text — the slug is the same in every market.
pageNo1-based page number. Use with `total` to walk a large result set.
sortNoResult order. Default `recent` (most recently seen first).
kmMaxNoMaximum kilometres on the odometer.
limitNoResults per page (default 10, max 20).
modelNoModel slug (e.g. corolla, serie-3, golf). Requires `make` to disambiguate.
yearMaxNoMaximum registration year.
yearMinNoMinimum registration year.
bodyTypeNoBody style. SEDAN = berlina, HATCHBACK = citadino, COMBI = carrinha, CABRIO = descapotável, MINIVAN = monovolume.
districtNoDistrict or region inside the market (e.g. Lisboa, Porto, Berlin, Madrid). Matched exactly.
priceMaxNoMaximum price in the market currency. Listings with no published price are excluded by either bound.
priceMinNoMinimum price in the market currency.
conditionNoVehicle condition. new = 0 km / registered this year; semi_new = <2 years and <20 000 km; used = everything else.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
carsYes
pageYes
shownNo
totalYesExact number of listings in this market matching the filters, across all pages.
marketYesISO country code of this market.
hasMoreYes
currencyYes
pageSizeNo

TDQS

B3.3/5.0
Behavior1/5

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

The description adds useful context beyond the annotations: listings are aggregated from stands and portals, refreshed daily, each result carries `publishedAt`, and `total` has caveats. However, 'report `total` as a floor, not a census' contradicts `openWorldHint=false`, which signals a closed world; the description explicitly encourages the agent to reason as if the result set may be incomplete. Per the rubric, a description that contradicts annotations must score 1.

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 three compact sentences with no filler. It front-loads the core purpose, then states the return contract (including `total` and `publishedAt`), then gives the key caveats. Every sentence earns its place.

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

Completeness3/5

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

For a 14-parameter read-only tool with an output schema, the description covers return fields, freshness, and `total` semantics well. But it lacks sibling differentiation and contains the open-world contradiction about `total` as a floor, which could mislead an agent selecting or interpreting the tool.

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

Parameters3/5

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

Schema description coverage is 100%, and every parameter already has an explanatory description including enum translations and constraints. The tool description adds no per-parameter meaning beyond the schema, so the baseline 3 applies.

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 names a specific verb and resource — 'Search current used-car listings for sale in Portugal' — and enumerates the main filter dimensions (make, model, budget, mileage, fuel, district). It stops short of a 5 because it doesn't differentiate this tool from the sibling `search_cars_by_description`, so an agent can't tell which search path to prefer for free-text queries.

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 explicit when-to-use context ('Use this whenever the user wants to find, compare or explore cars') and adds practical guidance to prefer broad filters and treat `total` as a floor. However, it provides no exclusions and names no alternatives such as `get_car_detail`, `get_price_stats`, or `search_cars_by_description`, so the when-not-to-use side is missing.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4.1/5.0
Disambiguation4/5

Most tools have clear boundaries: search_cars handles structural queries, search_cars_by_description handles descriptive queries, and find_similar_cars finds alternatives to a reference listing. There is some overlap between search_cars and find_similar_cars when finding comparable cars, but the descriptions clarify which to use for each intent.

Naming Consistency4/5

Names broadly follow a verb_noun pattern: search_cars, get_car_detail, get_price_stats, search_articles. The main inconsistency is mixing 'search' and 'find' verbs, and search_cars_by_description is longer and less symmetric than the others, but the pattern remains readable and predictable.

Tool Count5/5

Six tools is well-scoped for a car search and market-analysis server. Each tool serves a distinct user need from listing search to price statistics to editorial content, with no redundancy or bloat.

Completeness5/5

The tool surface covers the complete read-only lifecycle of a car-search domain: structural search, descriptive search, similar-car discovery, detail retrieval, market-level price stats, and supporting editorial articles. No obvious dead ends or missing operations within the stated purpose.

Resources