Skip to main content
Glama

stl_gtfs_routes

Read-onlyIdempotent

Find and list transit routes by type or search term, showing IDs, names, and trip counts. Filter by bus, tram, subway, or rail to inspect GTFS data.

Instructions

List routes with ids, short and long names, type and trip counts.

Args: route_type: GTFS route_type as a string. '3' is bus, '0' tram/streetcar, '1' subway, '2' rail. search: case-insensitive substring match across all route fields.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNo
offsetNo
searchNo
snapshotNo
route_typeNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3.2/5.0
Behavior3/5

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

Annotations declare read-only, idempotent, non-destructive. Description adds no further behavioral detail (e.g., result size, pagination behavior). Given annotations present, it's minimally transparent but no contradictions.

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?

Description is concise, with a clear main sentence and an argument list. No irrelevant details.

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?

Description includes output fields but omits details about snapshot meaning, search behavior, or pagination. Given the presence of sibling tools, some context is available, but not fully self-contained. Output schema is said to exist but not shown.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters1/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Description does not explain any of the five parameters (limit, offset, search, snapshot, route_type). Schema coverage is 0% - parameters are only listed with types and defaults, no semantic meaning.

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

Purpose5/5

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

States a specific verb ('List') and resource ('routes'), and specifies output fields (ids, names, type, trip counts). Siblings include singular 'route', so this is clearly the plural list operation.

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?

Does not provide explicit guidance on when to use this tool versus alternatives, nor conditions for filtering or pagination. No comparison to stl_gtfs_route or other query tools.

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