Skip to main content
Glama
hashan-lakshitha

Antigravity Browser Operator

browser_select_tab

Switch to a specific Chrome tab by ID so AI agents can focus the intended page during browser automation.

Instructions

Switches to / focuses a specific tab in the user’s Chrome browser by tab ID.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
tabIdYesThe numeric ID of the tab to focus.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.1

TDQS

B3.3/5.0
Behavior3/5

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

With no annotations, the description carries the full burden, and it discloses the core effect (focus/switch to the tab). It omits edge behavior such as what happens if the tab ID is invalid or whether the Chrome window is brought to the foreground. Minimum viable for a simple focus operation, but thin on behavioral depth.

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?

A single front-loaded sentence with no filler. The action and its target are stated immediately.

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 one-parameter tool with no output schema, the description covers the essential action. However, it gives no indication of error conditions or where the tab ID originates, leaving minor gaps for an agent.

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%, so the single tabId parameter is already fully documented by the schema. The phrase 'by tab ID' reinforces but adds no new meaning. Baseline 3 is appropriate.

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?

States a specific verb (switches/focuses), resource (a specific tab), and mechanism (by tab ID). It reads clearly against siblings like browser_new_tab and browser_close_tab, though it never explicitly names them.

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

Usage Guidelines2/5

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

No when-to-use guidance, no prerequisites, and no reference to alternatives. It does not tell the agent that the tab ID must first come from browser_list_tabs, nor when to prefer this over browser_navigate or browser_new_tab.

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