Skip to main content
Glama

Flash the hazard lights

toyota_find_car
Idempotent

Flash the hazard lights briefly to locate your car in a crowded lot. The car reports back silently, confirming the action so you can spot it.

Instructions

Flash the hazard lights briefly so the user can spot the car — silent. Verified by the car reporting back.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
confirmNotrue sends the command to the car; false (default) only previews what would happen and sends nothing.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
doorsNo
detailYes
statusYes'needs_confirmation' = nothing was sent; 'verified' = the car reported the new state; 'accepted' = Toyota accepted the command but the car has not confirmed it yet; 'failed' = the car rejected it.
climateNo
commandYes
chargingNo
elapsed_secondsNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.2/5.0
Behavior4/5

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

Annotations already flag this as a mutating, idempotent, non-destructive action. The description adds useful behavioral detail: the flash is brief, silent, and verified by the car reporting back. No contradiction with the annotations exists.

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 one sentence with no waste. The core action ('Flash the hazard lights briefly') is front-loaded, and the two additional facts—'flent' and 'verified by the car reporting back'—are both meaningful and compact.

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 simple one-parameter command with an output schema and solid annotations, the description covers the essential behaviors: brief action, silent, and confirmation. It could optionally mention prerequisites such as a selected vehicle, but that is not clearly required and would be redundant across sibling tools.

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 the single confirm parameter is already fully documented in the schema with its preview-versus-send behavior. The description adds no additional parameter-level meaning, so the baseline of 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 uses a specific verb and resource: 'Flash the hazard lights briefly'. It also states the purpose ('so the user can spot the car') and adds the distinguishing trait 'silent', which differentiates it from audible alternatives like toyota_sound_horn.

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 conveys a clear use context: visually locating the car. The word 'silent' implies the audible alternative is not used, though it does not explicitly name toyota_sound_horn or state when not to use this tool.

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