Skip to main content
Glama

Odometer reading

toyota_get_odometer
Read-onlyIdempotent

Check the odometer reading for your Toyota to see the total distance traveled in kilometers or miles.

Instructions

Total distance on the odometer.

Use for: how many kilometers/miles are on the car?

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
odometerYes
freshnessYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.9/5.0
Behavior3/5

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

Annotations already disclose readOnly, idempotent, and non-destructive behavior. The description adds a useful semantic detail—'total' distance vs. trip data—and unit ambiguity (kilometers/miles), but does not add further operational context such as data freshness or refresh requirements.

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?

Two concise sentences front-load the core result and add a practical use-case question. There is no redundant detail or 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?

For a zero-parameter getter with an output schema and read-only annotations, the description covers the main use case. It could be slightly more complete by noting how it differs from vehicle_info/status or whether a vehicle must first be selected, but nothing critical is missing.

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?

There are no parameters, so the baseline is 4. The description still adds meaning by specifying that the value is total odometer distance and expected in kilometers/miles, which is all an agent needs beyond the empty schema.

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 explicitly states the resource ('odometer') and the value returned ('total distance'), and gives a concrete user-facing question ('how many kilometers/miles are on the car?'). It is clear enough to distinguish from energy, charging, or location getters, though it does not name a sibling.

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 'Use for:' line gives an explicit triggering question, so an agent knows when to select this tool. It does not state exclusions or mention alternatives such as toyota_get_vehicle_info, but for a zero-parameter getter the usage context is clear.

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