Skip to main content
Glama

browser_navigate

Load a specified URL in a browser session and optionally return a snapshot observation (none, compact, or full) for web automation tasks.

Instructions

Navigate and return no, compact, or full snapshot observation.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
urlYes
observeNocompact
session_idNo
timeout_msNo
wait_untilNoload

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

C2.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 behavioral burden, and it does disclose that the call returns an observation whose detail depends on the observe setting. Beyond that it says nothing about navigation side effects, wait/timeout semantics, session reuse, error behavior, or whether state persists. For a browser-navigation tool with zero annotation coverage this is a substantial gap.

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 a single short sentence with no padding, which is appropriately sized. The wording is awkward and back-loaded, describing output verbosity rather than front-loading the core action of navigating to a URL.

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?

An output schema exists, so return values need not be explained, but with 5 parameters at 0% schema coverage and no annotations the description should cover navigation and wait behavior. It leaves the agent without enough grounding to choose observe/wait_until/timeout values correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, so the description must compensate for five parameters, but it only loosely gestures at the observe enum (and calls the 'none' value 'no'). url, session_id, timeout_ms, and wait_until are entirely undocumented, leaving the agent to infer their meaning and defaults from the schema alone.

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 verb 'Navigate' plus the mention of a snapshot observation gives a recognizable action, and it is distinguishable from siblings like browser_reload or browser_snapshot. However the phrase 'return no, compact, or full snapshot observation' is garbled and never states the resource being navigated (a URL in a browser session), so the purpose is only loosely conveyed.

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 statement of when to use this tool versus browser_reload, browser_start, browser_snapshot, or browser_wait_for. The observe options hint that snapshot selection is a consideration, but no conditions or alternatives are named.

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