Skip to main content
Glama

browser_navigate

Open a URL in the active browser tab to direct an automated Chrome session to any page for testing, scraping, or data collection tasks.

Instructions

Navigate active tab to a URL.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
urlYesURL to navigate to

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.8.0

TDQS

C2.9/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 behavioral burden, yet it says nothing about whether navigation blocks/waits for page load, what happens to existing page history, error behavior on invalid URLs, or whether auth/permissions are needed. For a navigation tool with zero annotation coverage, this is a significant gap.

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

Conciseness4/5

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

A single short sentence with no filler, and the key scoping qualifier ('active tab') is front-loaded. It is efficient but almost too terse to be fully informative.

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 navigation tool with no output schema, the description is minimally adequate, but the absence of any load-waiting or error semantics leaves an agent guessing about behavior after invocation.

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 'url' parameter is documented in the schema ('URL to navigate to'). The description adds no format, encoding, or scheme details beyond the schema, so the baseline of 3 applies.

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 ('navigate'), resource ('active tab'), and target ('URL'), so the agent understands the action is on the currently active tab rather than creating a new one. However, it does not explicitly distinguish itself from the many navigational siblings (browser_forward, browser_back, browser_reload, browser_new_tab), so it falls short of a 5.

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 on when to use this versus alternatives such as browser_new_tab, browser_forward, browser_back, or browser_reload. The 'active tab' phrasing implies a precondition but no explicit when/when-not or prerequisites are stated.

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