Skip to main content
Glama

MCPFax Vehicle Diagnostics

NHTSA safety recalls

vehicle_recalls

Official NHTSA safety recalls for a vehicle. Returns campaign id, affected component, the safety consequence, and the free remedy, newest first (max 50). Query by make (optionally model and year) or by a known campaign id. Use this before buying a used vehicle or when a customer asks whether their car has open recalls. A zero count means nothing matched the ingested NHTSA subset — it does not prove the vehicle is recall-free. Costs $0.005 USDC per call via x402 on Base.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
makeNoConsumer make name, e.g. 'FORD', 'TOYOTA'. Required unless 'campaign' is given.
yearNoFour-digit model year, e.g. '2018'. Optional.
modelNoModel name, e.g. 'F-150', 'CAMRY'. Optional.
campaignNoNHTSA campaign id to fetch directly, e.g. '21V123000'. Optional.

TDQS

A4.6/5.0
Behavior5/5

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

With no annotations, the description carries the full burden and fully discloses key behaviors: it returns a specific set of fields, orders newest first, caps at 50 results, and costs $0.005 USDC via x402. It also warns that a zero count does not prove a vehicle is recall-free, a critical nuance that prevents misinterpretation of negative results.

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 four sentences with no filler. It front-loads the purpose and output fields, then provides query modes, usage scenarios, a critical caveat, and cost information. Every sentence adds value; there is no repetition or unnecessary detail.

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?

Despite no annotations and no output schema, the description provides enough to call the tool correctly: query parameters, output fields, ordering, limit, cost, and a caveat. It doesn't detail error handling or what happens if both make and campaign are used, but these are minor gaps given the clear schema and the tool's simple read-only nature.

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 schema already provides detailed descriptions for all four parameters (100% coverage), so the baseline is 3. The description adds the conditional requirement that make is required unless campaign is provided, and clarifies the two query modes (by make/model/year or by campaign). This enriches the schema without redundancy, though it doesn't introduce entirely new semantics.

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: returning official NHTSA safety recalls for a vehicle, and lists the specific output fields (campaign id, affected component, safety consequence, remedy). It distinguishes itself from sibling tools (dtc_lookup, vehicle_tsbs, vin_decode) by focusing exclusively on recalls, so an agent can select it unambiguously.

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 use cases: before buying a used vehicle or when a customer asks about open recalls. It does not explicitly name alternatives, but the sibling names (dtc_lookup, vehicle_tsbs, vin_decode) make it clear they serve different purposes. The caveat about zero count also guides interpretation of results, helping agents understand when not to over-conclude.

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.4/5.0
Disambiguation5/5

Each tool targets a clearly distinct resource: fault codes, recalls, service bulletins, and VIN decoding. Even where dtc_lookup and vehicle_tsbs both involve fault codes, their descriptions explicitly separate code meaning from manufacturer repair guidance.

Naming Consistency4/5

Tool names are consistently lowercase snake_case and readable, but they mix an entity-verb style (dtc_lookup, vin_decode) with a vehicle-prefixed noun style (vehicle_recalls, vehicle_tsbs). This is a minor deviation rather than a confusing inconsistency.

Tool Count5/5

Four tools is well-scoped for a vehicle diagnostics lookup server. Each tool covers a distinct core need, and none feel redundant or unnecessary.

Completeness5/5

The surface covers a coherent workflow: decode a VIN to identify the vehicle, look up fault code meanings, check official safety recalls, and find technical service bulletins. No obvious dead-end or critical missing operation exists for the stated domain.

Resources