Skip to main content
Glama

Find Cheapest Fuel

find_cheapest_fuel
Read-onlyIdempotent

Find the cheapest countries for a given fuel type in a region (or worldwide). Useful for route planning.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoHow many cheapest countries to return.
regionNoRegion to search. Default: world (all countries).world
fuel_typeNoFuel type. Uses the same keys as /api/fuel/prices prices.diesel

TDQS

A3.8/5.0
Behavior3/5

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

Annotations already mark this as read-only, idempotent, and non-destructive, so the safety profile is covered without needing description. The description adds that results are ranked countries filtered by region/fuel type, but does not mention output shape, ordering guarantees, or edge cases such as fewer results than limit. This is adequate but not rich.

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 short sentences, with the core capability front-loaded and a use case in the second sentence. Every word earns its place; no filler or repetition of schema details.

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 three-optional-parameter tool with full schema descriptions and safe annotations, the definition is nearly complete. The description indicates the result will be a set of cheapest countries, which is the key missing output information given there is no output schema. A slight gap is not specifying whether prices accompany the country results, but this is minor.

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%, including default values and enums, so the description does not need to restate parameter semantics. The description mentions fuel type and region but adds no meaning beyond the schema; limit is not referred to at all. Baseline 3 is appropriate.

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 uses a specific verb+resource: find the cheapest countries for a fuel type in a region. It is clearly not a generic price lookup, and 'countries' distinguishes it from siblings like get_fuel_prices. However, it never explicitly names or contrasts sibling tools, so it stops short of full differentiation.

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?

'Useful for route planning' gives an explicit context where this tool should be selected. It also clarifies the optional worldwide scope. It does not explicitly say when to choose get_fuel_prices or compare_fuel_prices instead, so it lacks an exclusion statement.

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

Each tool has a clearly distinct purpose targeting specific resources like fuel prices, events, weather, or stories, with no overlap in functionality. For example, compare_fuel_prices and find_cheapest_fuel serve different comparison and search roles, while get_fuel_prices provides detailed data, making misselection unlikely.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern (e.g., compare_fuel_prices, get_currency_rate, list_events), using snake_case throughout. This predictability aids agents in understanding and selecting tools without confusion from mixed conventions.

Tool Count5/5

With 11 tools, the count is well-scoped for the vanlife travel domain, covering key areas like fuel, events, weather, and stories. Each tool earns its place by addressing distinct needs, avoiding bloat while providing comprehensive coverage for planning and information retrieval.

Completeness4/5

The tool set offers strong coverage for vanlife travel, including fuel price comparison, event listings, weather suitability, and story searches, with no dead ends. A minor gap exists in lacking update or delete operations for user-specific data, but core informational and planning workflows are fully supported.