Skip to main content
Glama
JustasMonkev

MCP Accessibility Scanner

browser_wait_for

Read-only

Monitor webpage content for specific text to appear, disappear, or wait a set duration, ensuring precise timing for accessibility testing in automated scans.

Instructions

Wait for text to appear or disappear or a specified time to pass

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
textNoThe text to wait for
textGoneNoThe text to wait for to disappear
timeNoThe time to wait in seconds

Implementation Reference

  • Handler function implementing the 'browser_wait_for' tool. Waits for a specified time, or for text to appear (visible) or disappear (hidden) using Playwright locators on the current tab.
    handle: async (context, params, response) => {
      if (!params.text && !params.textGone && !params.time)
        throw new Error('Either time, text or textGone must be provided');
    
      if (params.time) {
        response.addCode(`await new Promise(f => setTimeout(f, ${params.time!} * 1000));`);
        await new Promise(f => setTimeout(f, Math.min(30000, params.time! * 1000)));
      }
    
      const tab = context.currentTabOrDie();
      const locator = params.text ? tab.page.getByText(params.text).first() : undefined;
      const goneLocator = params.textGone ? tab.page.getByText(params.textGone).first() : undefined;
    
      if (goneLocator) {
        response.addCode(`await page.getByText(${JSON.stringify(params.textGone)}).first().waitFor({ state: 'hidden' });`);
        await goneLocator.waitFor({ state: 'hidden' });
      }
    
      if (locator) {
        response.addCode(`await page.getByText(${JSON.stringify(params.text)}).first().waitFor({ state: 'visible' });`);
        await locator.waitFor({ state: 'visible' });
      }
    
      response.addResult(`Waited for ${params.text || params.textGone || params.time}`);
      response.setIncludeSnapshot();
    },
  • Schema definition for the 'browser_wait_for' tool, specifying name, title, description, input schema with optional time, text, or textGone parameters using Zod validation.
    schema: {
      name: 'browser_wait_for',
      title: 'Wait for',
      description: 'Wait for text to appear or disappear or a specified time to pass',
      inputSchema: z.object({
        time: z.number().optional().describe('The time to wait in seconds'),
        text: z.string().optional().describe('The text to wait for'),
        textGone: z.string().optional().describe('The text to wait for to disappear'),
      }),
      type: 'readOnly',
    },
  • Export of the defined tool for registration in the MCP tools collection.
    export default [
      wait,
    ];
Behavior3/5

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

Annotations already provide readOnlyHint=true, destructiveHint=false, and openWorldHint=true, indicating a safe, non-destructive operation. The description adds behavioral context about what triggers the wait (text appearance/disappearance or time), which is valuable beyond annotations. However, it doesn't specify timeout behavior, error conditions, or what happens if multiple conditions are specified.

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 a single, efficient sentence that front-loads the core functionality with zero wasted words. It directly communicates the tool's purpose without unnecessary elaboration, making it easy to parse quickly.

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

Completeness3/5

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

For a tool with 3 parameters, 100% schema coverage, and annotations covering safety, the description is adequate but minimal. It lacks details on output (no output schema), error handling, or integration with sibling tools (e.g., use after browser_navigate). Given the complexity is moderate, it meets minimum viability but could be more complete.

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 description coverage is 100%, with clear parameter descriptions in the schema. The description adds minimal value by summarizing the parameters ('text to appear or disappear or a specified time'), but doesn't provide additional semantics like parameter interactions, default behaviors, or examples. Baseline 3 is appropriate given the comprehensive schema.

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 states the tool's purpose with specific verbs ('wait for text to appear or disappear or a specified time to pass'), making it immediately understandable. It distinguishes itself from siblings like browser_click or browser_type by focusing on waiting rather than performing actions. However, it doesn't explicitly mention it's for browser automation context, though sibling tools provide that context.

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 implies usage scenarios (waiting for text changes or timeouts) but doesn't provide explicit guidance on when to use this versus alternatives. No sibling tools offer similar waiting functionality, so differentiation isn't needed, but it lacks context about prerequisites (e.g., needing an active browser session) or typical use cases.

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

Install Server

Other Tools

Related Tools

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/JustasMonkev/mcp-accessibility-scanner'

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