Skip to main content
Glama

browser_forward

Navigate forward through browser history to return to a page you previously visited. Specify the number of steps to move ahead.

Instructions

Navigate forward in browser history (forward button).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
deltaNoNumber of steps forward

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 burden. It says nothing about what happens when there is no forward history, whether the call errors or is a no-op, or whether it waits for the page to load — all meaningful behaviors for an agent orchestrating browser navigation.

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 the action front-loaded and no filler. It is efficient, though almost to the point of under-specifying behavior.

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 trivial one-parameter navigation tool with no output schema, the description is minimally adequate to invoke it. However, with no annotations and no statement of failure/no-op behavior, an agent lacks enough context to handle edge cases confidently.

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 optional 'delta' parameter is documented as 'Number of steps forward' with a default of 1. The description adds no extra meaning beyond the schema, so the baseline 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) and resource (browser history, forward direction), and the parenthetical '(forward button)' anchors it to a familiar UI action. It is clearly distinguishable from the sibling browser_back, though it never names that sibling or otherwise contrasts itself explicitly.

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 guidance on when to use this versus browser_back, browser_history, or browser_navigate, all of which live adjacent in the tool list. A caller must infer the intended context entirely from the tool name.

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