Skip to main content
Glama

browser_click_at

Click at specified viewport coordinates in a live browser, returning the resolved selector of the element clicked plus an updated preview.

Instructions

Click at viewport coordinates (x, y in CSS pixels); returns the resolved selector of the clicked element (data-testid → id → CSS path) plus the updated preview. Prefer browser_run_step with a selector for reproducible steps.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
xYesX coordinate (CSS pixels)
yYesY coordinate (CSS pixels)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.5/5.0
Behavior4/5

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

With no annotations, the description carries the full burden of behavioral disclosure. It explains coordinate semantics (viewport, CSS pixels), the resolved selector fallback chain (data-testid → id → CSS path), and the updated preview. It could additionally disclose caveats like out-of-viewport coordinates or non-clickable elements, but it covers the core behavior well.

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 concise sentences: the first states the action and return value, the second provides usage guidance. No filler or 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 two-parameter coordinate click tool, the description covers the essential behavioral contract: what it clicks, how coordinates are interpreted, what it returns, and when to use the alternative. No output schema exists, so the return value description is especially valuable and sufficient.

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%, so the baseline is 3. The description reinforces that x and y are viewport coordinates in CSS pixels but does not add meaningful new constraints or clarifications beyond the schema property descriptions.

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 states a specific verb ('Click'), a concrete resource ('viewport coordinates (x, y in CSS pixels)'), and the return value, which distinguishes it from sibling browser tools. It also explicitly differentiates itself from browser_run_step by indicating coordinate-based versus selector-based interaction.

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 gives clear guidance on when to prefer an alternative: 'Prefer browser_run_step with a selector for reproducible steps.' This explicitly tells the agent the situational trade-off and names the sibling alternative.

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