Skip to main content
Glama

browser_navigate

Navigate to a specified URL and return a snapshot of the resulting page to inspect its content and state.

Instructions

Navigate the browser to a URL and return a snapshot of the resulting page.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
urlYesThe URL to navigate to.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3.1/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 behavioral burden. It discloses that the tool returns a snapshot, but says nothing about page-load waiting, redirect/error handling, tab behavior, or that this mutates browser state.

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?

One 14-word sentence that front-loads the primary action and follows with the return value. No filler or redundancy.

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 single-parameter tool this is minimally viable: an agent knows to pass a URL and expect a snapshot. However, with no output schema and no annotations, the meaning of 'snapshot' is undefined and edge behaviors are undisclosed.

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 only parameter, url, is already documented as 'The URL to navigate to.' The tool description merely restates this purpose without adding format details such as required protocol or full vs relative URL handling.

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?

The description states a specific verb ('navigate'), resource (the browser), and target (a URL), and adds the return behavior (snapshot of the resulting page). It reads clearly and is implicitly distinguishable from siblings like browser_navigate_back and browser_snapshot, though it never 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?

The description gives no when-to-use guidance or alternative routing. With 24 sibling tools including browser_snapshot (snapshot without navigation) and browser_navigate_back (reverse navigation), an agent gets no help deciding between them.

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