Skip to main content
Glama

CarsMultiverse — the recall record

check_vehicle

Check one vehicle for safety recalls: by VIN (decoded worldwide with NHTSA vPIC), or by make, model and model year. Returns every American recall campaign that may cover it (with do-not-drive and park-outside warnings, and whether the wording was rewritten after publication) plus matching notices from the Canadian, British, EU, Dutch, Japanese and Israeli registers.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
vinNo17-character VIN.
makeNo
yearNoFour-digit model year.
modelNo
plateNoNumber plate (Netherlands or Israel only): returns the recalls still open on that exact vehicle.
countryNoCountry of the number plate.

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed2 schema fields changed
    • addedInput schema / properties / country
      Added value: +{
      +  "description": "Country of the number plate.",
      +  "enum": [
      +    "nl",
      +    "il"
      +  ],
      +  "type": "string"
      +}
    • addedInput schema / properties / plate
      Added value: +{
      +  "description": "Number plate (Netherlands or Israel only): returns the recalls still open on that exact vehicle.",
      +  "type": "string"
      +}
  2. Added

TDQS

A4.3/5.0
Behavior4/5

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

With no annotations, the description carries the behavioral burden. It discloses the read-only nature ('Check', 'Returns'), the NHTSA vPIC source, the international scope, and notable output details such as do-not-drive and park-outside warnings and rewritten wording. It stops short of explaining what happens with missing or conflicting inputs.

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

Conciseness4/5

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

The description is front-loaded with the core action and contains no filler; every clause adds useful scope or output detail. It is slightly dense as a single long sentence, but the structure is acceptable given the tool's complexity.

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 no output schema and no annotations, the description covers the main input alternatives, source scope, and return content well. The main gap is not explicitly stating that the caller must provide either a VIN or make/model/year (and optionally plate+country), nor how the tool behaves if no lookup key is supplied.

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?

Schema coverage is 67%, so the description must compensate. It adds meaning by explaining VIN decoding via NHTSA vPIC, the conditional make/model/year grouping, and that the plate parameter is Netherlands/Israel-only and returns open recalls for that exact vehicle. It does not explicitly state which parameter combinations are required.

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: 'Check one vehicle for safety recalls.' It clearly distinguishes this from siblings like get_recall_notice, list_registers, and search_recalls by focusing on a single vehicle and combining multiple international registers.

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: to check one vehicle by VIN or by make/model/year, with optional plate-based lookup. It does not explicitly name alternatives or state when not to use it, but the single-vehicle framing makes the intended use obvious.

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.

Resources