Skip to main content
Glama

Wait

wait
Read-onlyIdempotent

Pause before the next action so the UI can catch up: page loads, animations, dialogs opening, apps launching. Then confirm the new state with get_app_state or screenshot.

Instructions

Pause before the next action so the UI can catch up: page loads, animations, dialogs opening, apps launching. Follow with get_app_state or screenshot to confirm the new state instead of guessing. Sends no input.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
secondsNoSeconds to wait (default 1, maximum 30)

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed1 schema field changedv0.3.1
    • changedInput schema / properties / seconds / description
      Previous value: -"Seconds to wait (default 1, max 30)"New value: +"Seconds to wait (default 1, maximum 30)"
  2. First observedv0.3.0

TDQS

A4.3/5.0
Behavior4/5

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

Annotations already cover read-only, idempotent, and non-destructive behavior. The description adds useful behavioral context beyond that: the wait exists to let UI transitions settle, and it sends no input. This enriches the annotation profile without contradicting it.

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?

Two purposeful sentences front-load the core purpose and usage context, then add the verification follow-up and the behavioral constraint. Every sentence earns its place with no filler.

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

Completeness5/5

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

For a simple no-input pausing tool with strong annotations and a fully described schema, the description covers why, when, and how to confirm the result. Nothing an agent needs to correctly invoke this tool is missing.

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?

Schema coverage is 100%, and the only parameter (seconds) is already fully documented with default and maximum. The description does not need to repeat this, but it also adds no additional nuance about how the parameter interacts with wait behavior. Baseline 3 is appropriate.

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 specific verb ('Pause') and gives concrete use cases (page loads, animations, dialogs opening, apps launching), so an agent can tell exactly what the tool does. It also separates this action-oriented tool from siblings like get_app_state or screenshot by noting it 'sends no input.'

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?

It clearly states when to use the tool: before the next action when the UI needs to catch up. It also advises following up with get_app_state or screenshot to confirm the new state instead of guessing, giving actionable post-wait guidance. It does not explicitly discuss when not to use it, but the context is clear.

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