Skip to main content
Glama

MCPFax Vehicle Diagnostics

NHTSA technical service bulletins

vehicle_tsbs

NHTSA Technical Service Bulletins (manufacturer repair guidance for known defects that are not safety recalls). Returns bulletin id, summary, and the fault codes each bulletin names (max 50). Query by make/model/year, or by fault code to find bulletins that address that specific code. Use this after dtc_lookup when you want the manufacturer's documented fix. A zero count means nothing matched the ingested subset. Costs $0.005 USDC per call via x402 on Base.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
codeNoFault code to match against the bulletin's listed codes, e.g. 'P0301'. Optional.
makeNoConsumer make name, e.g. 'TOYOTA'. Required unless 'code' is given.
yearNoFour-digit model year, e.g. '2019'. Optional.
modelNoModel name, e.g. 'CAMRY'. Optional.

TDQS

A4.2/5.0
Behavior4/5

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

With no annotations provided, the description carries the behavioral disclosure burden. It reveals what is returned, caps results at 50, explains that zero count means nothing matched the ingested subset, and states the per-call cost. This is strong coverage for a lookup tool, though it does not mention pagination or error cases beyond zero 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 compact and every sentence adds value: definition, output contents, query modes, usage relationship, zero-count semantics, and cost. It is densely informative without fluff or redundant restatement of the schema.

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?

There is no output schema, so the description appropriately explains the returned fields (bulletin id, summary, fault codes, max 50) and the data-subset limitation. It provides enough operational context for correct invocation, though an explicit example of the make/model/year vs. fault-code query combination would have made it fully complete.

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%, so the schema already explains each parameter. The description adds the overall query strategies ('by make/model/year, or by fault code') and the 'required unless code is given' rule, but this largely restates schema intent rather than adding new meaning. Baseline 3 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 returns NHTSA Technical Service Bulletins with bulletin ID, summary, and fault codes, and distinguishes them from safety recalls. It names the plausible alternatives by scope ('not safety recalls') and by relationship to dtc_lookup, so an agent can tell it apart from sibling 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 gives explicit guidance: use after dtc_lookup when the manufacturer's documented fix is wanted, and query by make/model/year or fault code. It does not explicitly say when not to use it or name vehicle_recalls as the alternative for safety recalls, but the 'not safety recalls' phrasing supplies enough context.

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