Skip to main content
Glama

stl_assert_list

Read-onlyIdempotent

Lists feed assumptions the app depends on, detailing what each verifies and what breaks if unmet, so feature changes encode dependencies before users discover them.

Instructions

The assumptions this app makes about the feed that Metro never promised.

Each one names what it checks and, more usefully, what breaks in the app if it stops holding. Read this before adding a feature that depends on feed behaviour, so the dependency gets encoded rather than discovered later by a user.

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
Behavior4/5

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

The description is consistent with the readOnlyHint and destructiveHint annotations, adding context about what the tool lists without contradicting the read-only nature. It does not introduce any side effects or caveats beyond what annotations already cover.

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 two sentences, front-loaded with the core purpose, then adding detail about the content and usage context. It is concise without being terse, and every sentence adds value.

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?

The description provides enough context for a user to understand what the tool does and when to use it. Since there is no output schema provided, the description does not need to explain return values. It is complete for a listing tool.

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?

The tool has no parameters, so the schema coverage is 100%. The description does not need to explain any parameters, and the baseline of 3 applies.

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: listing assumptions the app makes about the feed that Metro never promised. It also explains what each assumption names (what it checks and what breaks). This distinguishes it from sibling tools like stl_assert_run and stl_assert_explain.

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

Usage Guidelines4/5

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

The description gives explicit guidance on when to use the tool: 'Read this before adding a feature that depends on feed behaviour.' It implies the tool is for understanding existing assumptions, though it does not explicitly mention alternatives.

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