Skip to main content
Glama

stl_support_repro

Read-onlyIdempotent

Reconstruct expected transit stop data for a given stop and time, using stored snapshots to diagnose incorrect or missing predictions.

Instructions

Reconstruct exactly what the app should have shown at a stop and instant.

This is how "stop 15111 showed nothing at 11:47 last Tuesday" gets answered without a device and without waiting for Tuesday. When the answer is empty it also returns WHY it is empty, rather than leaving you to guess.

Args: stop: stop_code (the number on the sign) or stop_id. at: ISO-8601 instant; naive values read as America/Chicago. rt_snapshot: a stored realtime snapshot id to merge in, for reproducing a complaint about a wrong prediction.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
atNo
stopYes
snapshotNo
rt_snapshotNo
window_minutesNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.5/5.0
Behavior4/5

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

Annotations already declare readOnlyHint, idempotentHint, and destructiveHint false, so the safety profile is covered. The description adds useful behavioral detail by saying that when the answer is empty it also returns why, which goes beyond the annotations.

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?

The description is succinct, using only two sentences plus the parameter list. It avoids fluff and gets directly to the tool's purpose and the empty-result behavior.

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?

The description is too thin for a tool with five parameters and an output schema. It does not document the parameters, the output shape, or how the historical reconstruction actually works. The support use case is clear, but the missing parameter and output information leaves significant gaps.

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?

The schema provides zero parameter descriptions and the description does not explain the five parameters. In particular, the difference between 'snapshot' and 'rt_snapshot', the meaning of 'window_minutes', and the expected format for 'at' are all left undefined. With only parameter names and defaults, an agent cannot reliably choose and fill the arguments.

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?

The description clearly states the tool's purpose: reconstruct what the app should have shown at a stop and instant. The opening sentence is specific about the verb, resource, and temporal scope, and the example scenario makes it easy to understand without needing the schema.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

It gives a concrete scenario ('stop 15111 showed nothing at 11:47 last Tuesday') and notes it works without a device or waiting for the time to pass. However, it does not explicitly mention when to prefer this tool over sibling tools or when not to use it, relying on the reader to infer the niche.

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