Skip to main content
Glama

Tesla Longest Trips

tesla_longest_trips

Retrieve Tesla drives ranked by distance from TeslaMate data. Filter by vehicle ID or set a result limit to find the longest trips.

Instructions

Top drives ranked by distance -- your epic road trips.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoNumber of trips to show (default: 10, max: 100)
car_idNoFilter by vehicle ID (default: TESLA_CAR_ID env or first car)

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

C2.7/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full burden. It doesn't say whether this is read-only, how ranking ties are handled, or what the return shape includes, though an output schema exists. 'Your epic road trips' is marketing, not behavior.

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?

Two short clauses, front-loaded with the core action. No wasted sentences, though the second clause is decorative rather than informative.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

With an output schema present, return values needn't be explained, but the description is thin for a ranking tool with no annotations and several similar siblings. It leaves the differentiation burden entirely on the name.

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 coverage is 100%, so both parameters are documented in the schema. The description adds nothing parameter-specific, which meets the baseline of 3.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose3/5

Does the description clearly state what the tool does and how it differs from similar tools?

States a specific resource and ranking criterion (drives ranked by distance), which is clear enough. However, 'Top drives ranked by distance' is vague about whether it ranks drives overall, per trip, or per vehicle, and it doesn't distinguish itself from siblings like tesla_drives or get_longest_trip_on_single_charge.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance on when to use this versus tesla_drives, tesla_trips_by_category, or get_longest_trip_on_single_charge. The agent is left to infer selection from the name alone.

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