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
| Name | Required | Description | Default |
|---|---|---|---|
| busNumber | Yes | Bus number e.g. 25, 396, 86 |
Retrieve the full route for a given London bus number to see all stops and plan your journey.
Get the full route of a bus
| Name | Required | Description | Default |
|---|---|---|---|
| busNumber | Yes | Bus number e.g. 25, 396, 86 |
Changes observed during successful MCP inspections.
v1.0.0Does 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.
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.
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.
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.
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.
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.