Skip to main content
Glama
ChristofMilius

mcp-agent-playwright

browser_tab_new

Open a new browser tab, switch to it, and load a given URL to start interacting with the page immediately.

Instructions

Open a new browser tab and switch to it.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
urlNoURL to open in the new tab.about:blank

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3.4/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full burden of behavioral disclosure. It does reveal that the tool opens a tab and switches focus, but it omits other useful context such as what happens to the current tab, whether page load is awaited, or any error behavior. It adds little beyond the name itself.

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 short sentence that is front-loaded with the primary action and contains no filler. Every word contributes to understanding the tool's core function.

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

Completeness4/5

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

Given the tool's low complexity, one optional parameter, and a present output schema, the description covers the essential behavior well. The only notable gap is that it leaves some usage context—like when to prefer this over browser_navigate—to the agent; otherwise it is nearly 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%, so the baseline is 3. The description does not add meaning beyond the schema; the URL parameter is already documented as 'URL to open in the new tab.' The default of about:blank is only present in the schema, not reinforced in the description.

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?

Description states a specific action—open a new browser tab—and adds that it switches to it, which distinguishes it from siblings like browser_tab_switch and browser_navigate. The verb and resource are explicit and the behavior is unambiguous.

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 guidance is given about when to use this tool versus alternatives such as browser_navigate for in-place navigation or browser_tab_switch for moving to an existing tab. The intended context is only implied, not stated.

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