Skip to main content
Glama
v76ADrR
by v76ADrR

browser_navigate

Navigate the current Brave browser tab to a specified absolute URL using Chrome DevTools Protocol, enabling Grok CLI to open web pages in your existing session and logins.

Instructions

Navigate the current tab to a URL.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
urlYesAbsolute URL

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

C2.9/5.0
Behavior2/5

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

No annotations exist, so the description carries the full behavioral burden. It does disclose one useful trait — navigation targets the *current* tab rather than opening a new one — but it says nothing about whether the call blocks until load completes, what happens on failure or invalid URLs, or any prerequisite 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 sentence, front-loaded with the verb and scope, and nothing superfluous. There is no filler to remove.

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 browser-automation tool with no annotations and no output schema, this is thin: it doesn't cover prerequisites (e.g., browser_prepare), load-wait semantics, or error behavior. An agent can call it, but cannot predict how it behaves in a workflow.

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 as an absolute URI in the schema, so the schema already does the work. The description adds no syntax, scheme, or format guidance beyond that, which is the expected baseline for a fully covered single-parameter tool.

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) and resource (the current tab, to a URL), so the agent knows exactly what the call does. It implicitly distinguishes itself from tab-management siblings by saying 'current tab', but it never names an alternative sibling to make the boundary explicit.

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 when-to-use or when-not-to-use guidance is given. With siblings like browser_tabs, browser_prepare, and browser_snapshot available, the agent gets no signal about when navigating is the right move versus opening a tab or preparing the browser first.

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