Skip to main content
Glama
ImadMoka

playwright-mcp-supercharged

by ImadMoka

browser_navigate

Destructive

Navigates to a URL in a specified browser session, enabling isolated multi-session browsing and passwordless authentication via imported Chrome cookies.

Instructions

Navigate to a URL

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
urlYesThe URL to navigate to
sessionIdNoTarget session ID. Omit to use the active session.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

C2.5/5.0
Behavior2/5

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

Annotations already declare readOnlyHint=false, destructiveHint=true and openWorldHint=true, so the safety profile is covered. The description adds nothing beyond them: it never warns that the current page state is discarded, that navigation reaches the open web, or how it interacts with the current session. With annotations present the bar is lower, but zero added behavioral context merits a low score.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness3/5

Is the description appropriately sized, front-loaded, and free of redundancy?

It is as short as possible and front-loads the action, which is good, but the single sentence largely duplicates the title and earns little of its place. Conciseness here shades into under-specification.

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

Completeness2/5

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

For a navigation tool flagged destructive and open-world, with no output schema, the description omits whether the call blocks until the page loads, what happens to existing page state, and how it relates to the active session. Annotations carry the risk labels but the operational picture is incomplete.

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%, with both 'url' and 'sessionId' documented in the schema, so the baseline is 3. The description contributes no additional semantics such as URL format, whether relative paths are accepted, or what 'active session' means in practice.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose3/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description names a specific verb and resource ('Navigate to a URL'), so the core action is unambiguous. However, it is essentially a restatement of the tool name and the annotation title, and it gives no differentiation from close siblings like browser_navigate_back or browser_tabs. Minimum viable rather than genuinely informative.

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?

There is no when-to-use guidance, no mention of when to prefer browser_navigate_back, and no note about starting versus reusing a session. The agent must infer all routing from sibling names alone.

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