Skip to main content
Glama
yasg1988

transport12 MCP Server

by yasg1988

Get bus station races

get_bus_station_races

Retrieve bus station races (trip schedules) for a chosen destination and date. Provide destination ID and date in dd.mm.yyyy to get available departures.

Instructions

Get bus station races for a destination and date.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
dateYesTrip date in dd.mm.yyyy format.
destinationIdYesDestination id from search_bus_station_destinations.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.3

TDQS

C2.9/5.0
Behavior2/5

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

No annotations are present, so the description carries the full burden. It implies a non-mutating lookup but doesn't describe response format, data scope, or any side effects/errors; this is insufficient for a tool with zero annotation coverage.

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?

One-sentence definition, front-loaded with the verb and resource; every word adds meaning and there is no redundant phrasing.

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

Completeness2/5

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

With no output schema and no annotations, the description should explain what the result contains or at least clarify the domain term 'races'; it does neither, leaving important usage context missing.

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%, so the baseline is 3; the description merely paraphrases the two parameters without adding new semantic details like accepted date ranges or destination context.

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?

Clearly states the operation (get) and resource (bus station races) with a scope qualifier (destination and date). However, it doesn't distinguish itself from closely related siblings like get_bus_station_calendar, and 'races' is domain-specific and undefined.

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 tool versus alternatives; the description only gives the basic context. An agent could confuse it with get_bus_station_calendar or search_bus_station_destinations without additional clues.

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