Skip to main content
Glama

stl_web_check

Read-onlyIdempotent

Detect changes on monitored web pages to catch updated fares or developer terms, preventing outdated data and protecting redistribution rights.

Instructions

Has any watched page changed since its last capture?

This is the surveillance job. A changed fares page means the app's bundled fare table is now lying to riders; a changed developer-terms page means the redistribution rights this whole project rests on may have moved.

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

A4.1/5.0
Behavior3/5

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

The readOnlyHint and idempotentHint annotations already communicate safety, and the description adds contextual consequences but does not describe internal behavior or output details beyond the core question.

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 extremely concise, with two sentences that carry the purpose, the domain role, and the real-world impact without any wasted words.

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?

It provides enough domain context to understand why change detection matters (fares and developer-terms), and the output schema exists to define return values, so the missing return detail is acceptable.

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

Parameters5/5

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

The input schema has no parameters, so there is nothing for the description to clarify; the absence of parameters is consistent and needs no additional explanation.

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 uses a clear, specific verb ('check') and resource ('watched page') and immediately distinguishes its change-detection role from sibling tools such as stl_web_list, stl_web_capture, and stl_web_extract.

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 implies usage through the phrase 'This is the surveillance job' and explains consequences, but it does not explicitly state when to use this tool versus alternatives or provide a direct decision rule.

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