Skip to main content
Glama
hashan-lakshitha

Antigravity Browser Operator

browser_close_tab

Close a specific Chrome tab by its numeric tab ID, letting agents clean up browsing sessions through the Antigravity Browser Operator without restarting Chrome or losing logins.

Instructions

Closes a specific tab in the user’s Chrome browser by tab ID.

Input Schema

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

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.1

TDQS

B3.3/5.0
Behavior2/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It states the operation but omits important context for a destructive action: whether the tab is permanently removed, what happens to unsaved state, how errors are handled, or whether permissions are required.

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, front-loaded sentence with no wasted words. It states the action, target, environment, and mechanism efficiently.

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 simple one-parameter tool with full schema coverage, the description covers the basic operation. However, it omits usage context and any behavioral details, which would be more important given the absence of annotations and output schema.

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%, and the single tabId parameter is already documented in the schema as 'The numeric ID of the tab to close.' The description's phrase 'by tab ID' merely repeats that information, so the baseline score of 3 is appropriate.

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 and resource: 'Closes a specific tab.' The action 'close' is clearly distinct from sibling operations like browser_list_tabs, browser_select_tab, and browser_new_tab, so an agent can identify the tool's role without opening the schema.

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?

The description gives no explicit when-to-use or when-not-to-use guidance. It does not mention alternatives such as browser_select_tab or browser_list_tabs, nor does it explain when closing a tab is appropriate versus switching to or listing tabs.

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