Skip to main content
Glama

browser_overview

Discover clickable page elements and modal blockers with CSS selectors, labels, and viewport status to choose stable selectors before clicking.

Instructions

List all interactive elements (links, buttons, inputs, ARIA controls) on the current page with CSS selectors, visible text (an input's name — never what is typed in it), and viewport status — use before browser_click to discover stable selectors, and prefer this over screenshot when verifying button/toggle state after submission (no image tokens, structured output). scope limits to a CSS subsection (e.g. '.sidebar'). Returns state (checked/pressed/selected/expanded) for ARIA custom controls. Also returns a modal: section — whether a true modal dialog is blocking the page (isModal + blocker {name, role} + the signals it was judged on); it is ALWAYS present (isModal:false when no modal), and a navigation drawer is NOT reported as a modal (only an aria-modal / alertdialog / native showModal dialog, or a backdrop-backed dialog that locks the page, is treated as modal). Caveats: Selectors are CDP-generated snapshots — re-call after page navigates or re-renders. An input's text is its name — from aria-labelledby, aria-label, its , title, then its hint text — never what is typed in it: read values with browser_form, which withholds the value of a field the page masks (a password). Typed errors: code:'BrowserNotConnected' (CDP not attached — call browser_open or browser_open({launch:{}})). Note: a non-matching scope CSS selector silently falls back to the full document (does not raise an error) — verify the selector via browser_eval if scoped enumeration is required.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
portNoChrome/Edge CDP remote debugging port.
scopeNoCSS selector to limit the search scope (e.g. '.s-main-slot', '#nav-search-form'). Omit to scan the full page.
tabIdNoTab ID from browser_open. Omit to use the first page tab.
typesNoElement types to include. Default 'all' returns links, buttons, and inputs.
includeNoOptional response-shape opt-in. `['envelope']` returns the self-documenting envelope (`_version` / `data` / `as_of` / `confidence`). `['raw']` forces raw shape (overrides DESKTOP_TOUCH_ENVELOPE=1 server default). Default behaviour is raw shape (compat with existing clients).
maxResultsNoMaximum number of elements to return (default 50).
inViewportOnlyNoWhen true, only return elements currently visible in the viewport.
includeContextNoWhen true, append activeTab and readyState context to the response.

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv1.12.0
  2. Removedv1.10.4
  3. Addedv1.9.2
  4. Removedv1.8.0
  5. Addedv1.6.0
  6. Removedv1.5.1
  7. Addedv1.5.0
  8. Removedv1.4.3
  9. Addedv1.4.2
  10. Removedv1.4.0
  11. Addedv1.2.1
  12. Removedv1.1.2
  13. Addedv1.1.3
  14. Removedv1.1.1
  15. Addedv1.0.3

TDQS

A4.9/5.0
Behavior5/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, and it does so richly. It discloses that selectors are CDP-generated snapshots requiring re-calls after navigation or re-render, that input text is always the name and never the typed value, that browser_form withholds masked-password values, that a non-matching scope silently falls back to the full document, and it names the BrowserNotConnected error condition. No annotation contradiction exists.

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 dense but every clause earns its place: main purpose is front-loaded, usage guidance follows, and caveats are grouped and clearly labeled. Though lengthy, the complexity of the tool (8 parameters, modal behavior, error conditions, scope fallback) justifies the length. There is no filler or redundant restating of the schema.

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?

Given the absence of an output schema, the description does a strong job of explaining what the agent will receive: ARIA state values, the always-present modal section with isModal and blocker details, and structured output. It also covers error conditions, scope fallback, and masked input behavior. The definition is complete enough for correct invocation and expectation-setting.

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 coverage is 100%, so the baseline is 3. The description adds materially beyond the schema by explaining the non-matching scope selector behavior (silent fallback to the full document) and by clarifying input-text semantics as they relate to output. Most other parameter details are already well-documented in the schema, so the added value is meaningful but not exhaustive.

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 specific verb-resource pair: 'List all interactive elements (links, buttons, inputs, ARIA controls) on the current page' and enumerates the returned data (CSS selectors, visible text, viewport status). It also explicitly distinguishes the tool from browser_click and screenshot, so an agent can immediately tell what it does and why it exists.

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 explicit when-to-use guidance: 'use before browser_click to discover stable selectors' and 'prefer this over screenshot when verifying button/toggle state after submission'. It also routes value reading to browser_form and suggests browser_eval for verifying a scope selector, providing clear context and alternatives without leaving inference to the agent.

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