Skip to main content
Glama

browser_navigate

Navigate the active Chrome tab to a specified URL and retrieve the page's element table once loading completes, enabling subsequent browser actions.

Instructions

Navigate the target tab to a URL and return the element table once loaded.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
urlYes
tabIdNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.5/5.0
Behavior3/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. It usefully discloses that navigation happens and that the tool waits for load before returning an element table. It does not mention failure behavior, timeouts, or side effects like invalidating previous page state, but the core behavior is clear.

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 compact sentence with no filler. It front-loads the action and result and earns its place by stating both the operation and the expected return value.

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 an unannotated tool with no output schema and no parameter descriptions, this description is too thin. It leaves tabId semantics, default target behavior, and failure/loading edge cases implicit, so an agent lacks important details for robust invocation.

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%, and the description only indirectly references url and tabId as 'URL' and 'target tab'. It does not clarify that tabId is optional, which tab is used when omitted, URL format expectations, or how navigation errors are handled.

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?

The description states a specific action, 'Navigate the target tab to a URL', and a clear result, 'return the element table once loaded'. This is distinct from siblings like browser_observe or browser_act, because it clearly identifies the operation as web navigation.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies it should be used when the agent needs to change the current tab's URL and get the resulting element table. However, it gives no explicit when-to-use or when-not-to-use guidance and does not reference sibling alternatives such as browser_observe or browser_act.

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