Skip to main content
Glama

get_bus_route

Retrieve the full route for a given London bus number to see all stops and plan your journey.

Instructions

Get the full route of a bus

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
busNumberYesBus number e.g. 25, 396, 86

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

C2.9/5.0
Behavior2/5

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

With no annotations, the description carries the full behavioral burden, and it discloses almost nothing: not whether the route is static or live, whether stops are returned in order, or how invalid bus numbers behave. It only implies a read operation via the verb 'Get'.

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?

A single short sentence, front-loaded with the verb, with zero filler. It is efficient, though arguably over-terse given what is left unsaid.

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?

For a simple one-parameter read tool with full schema coverage and no output schema, this is minimally adequate. It falls short on return-value expectations (stop ordering, route shape), which the agent would need for a 'full route' request.

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% with an example format ('25, 396, 86'), so the single parameter is fully documented in structured data. The description adds no meaning beyond that, which is the correct baseline for a fully covered 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?

States a specific verb and resource ('Get the full route of a bus') and the word 'full' distinguishes it from partial-route siblings like get_bus_arrivals or get_line_status. It does not name any sibling explicitly, so differentiation is implicit rather than explicit.

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 get_line_status, get_bus_arrivals, or get_station_info, and no mention of prerequisites or scope. The agent must infer context from the tool name alone.

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