Skip to main content
Glama

stl_web_list

Read-onlyIdempotent

Lists Metro web pages configured for capture, including fares, holiday schedules, and developer terms, with last capture timestamps and content hashes.

Instructions

Metro web pages configured for capture, with their last capture and content hash. Fares, holiday schedules, the developer terms, and the upcoming-schedule-changes page -- everything the app needs that is not in the GTFS feed.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.6/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, covering the safety profile. The description adds what data is returned (last capture, content hash) but does not disclose potential errors or edge cases, which are not covered by annotations.

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?

The description is reasonably concise and structured as a single sentence. The enumeration of example content (fares, holiday schedules, etc.) adds specificity but could be trimmed without losing meaning; still, it earns a high score for clarity.

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

Completeness4/5

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

Given the absence of parameters and output schema, the description provides sufficient context about what the tool returns and its purpose. It does not specify output format, but this is not required since no output schema is provided.

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

Parameters4/5

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

The tool has zero parameters, so schema coverage is trivially complete. The baseline for no parameters is 4; the description does not need to explain parameter semantics because there are none.

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?

The description clearly indicates the tool returns configured Metro web pages with their last capture and content hash, and distinguishes these from GTFS feed data. The verb 'list' is implied by the tool name and the description's enumerative nature, making the purpose unambiguous.

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?

The description hints at when to use the tool ('everything the app needs that is not in the GTFS feed') but does not explicitly contrast it with sibling tools like stl_web_capture or stl_web_check. Usage guidance is implied rather than stated.

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