Skip to main content
Glama

wait_seconds

Block automation for a specified duration in seconds when you need a simple fixed wait, not for element or text conditions.

Instructions

Block the MCP server for a fixed number of seconds.

This is a low-level timing tool. It performs no browser action while waiting and should not be used when waiting for a page condition.

Prefer wait_for when waiting for an element or text to appear/disappear, because wait_for can return as soon as the requested condition is met.

Args: seconds: Number of seconds to block. May be an integer or float.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
secondsYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. Changed2 schema fields changedv4.53.7
    • removedInput schema / properties / seconds / anyOf
      Removed value: -[
      -  {
      -    "type": "integer"
      -  },
      -  {
      -    "type": "number"
      -  }
      -]
    • addedInput schema / properties / seconds / type
      Added value: +"number"
  2. Changed2 schema fields changedv4.53.2
    • addedInput schema / properties / seconds / anyOf
      Added value: +[
      +  {
      +    "type": "integer"
      +  },
      +  {
      +    "type": "number"
      +  }
      +]
    • removedInput schema / properties / seconds / type
      Removed value: -"number"
  3. Addedv1.0.1

TDQS

A4.7/5.0
Behavior4/5

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

With no annotations, the description carries the behavioral disclosure burden. It clearly states that the tool blocks the MCP server and performs no browser action while waiting, which accurately conveys the side effect and limitation. It does not discuss edge cases like zero/negative values or cancellation, but the core behavior is well disclosed.

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 concise and front-loaded: the core behavior appears in the first sentence, followed by usage context, the alternative, and parameter details. Every sentence contributes meaningful guidance without redundancy.

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 low-complexity tool with one required parameter, the description covers what the tool does, when to avoid it, what alternative to prefer, and what the parameter means. Since an output schema exists, return-value explanation is not required. No critical information is missing.

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?

Schema description coverage is 0%, so the description must explain the parameter. It adds meaning by stating that seconds is "Number of seconds to block" and clarifying that it may be an integer or float. It could explicitly state that the value must be non-negative, but the explanation is otherwise sufficient for this simple single-parameter tool.

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 opens with a precise verb and resource: "Block the MCP server for a fixed number of seconds." It clearly differentiates itself from the sibling wait_for by calling itself a low-level timing tool that performs no browser action.

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

Usage Guidelines5/5

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

The description explicitly says when not to use it: "should not be used when waiting for a page condition." It also names the alternative, wait_for, and explains why wait_for is preferable for element/text conditions because it returns as soon as the condition is met.

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

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/seleniumbase/SeleniumBase'

If you have feedback or need assistance with the MCP directory API, please join our Discord server