Skip to main content
Glama

browser_reload

Reload the current browser page to refresh content or reset state. Use this to fetch updated content or recover from a stale page.

Instructions

Reloads the current page in the browser session.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
session_idNoOptional browser tab/session identifier.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.3.2

TDQS

A3.5/5.0
Behavior3/5

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

With no annotations, the description carries the full burden of behavioral disclosure. It states the core action but does not mention potential side effects like losing unsaved page state or re-submitting requests, nor does it clarify behavior with multiple sessions. This is adequate but thin.

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 focused sentence with no filler. The action is front-loaded and the scoping phrase 'in the browser session' earns its place by connecting to the sibling tool set.

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 one-parameter optional tool, this is nearly sufficient. However, with no annotations and no output schema, it leaves unclear whether an active session is required, what happens if session_id is omitted, and what the tool returns after reloading.

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?

The schema already documents the single optional session_id parameter at 100% coverage, so the baseline is 3. The description adds no additional format, default, or fallback semantics beyond what the schema provides.

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 uses a specific verb ('Reloads') and identifies the resource ('current page in the browser session'). This unambiguously distinguishes it from sibling navigation tools like browser_navigate, browser_back, and browser_forward, even without naming 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?

There is no guidance about when to use reload versus navigating to a URL, going back, or going forward. It also does not mention prerequisites such as an active session or when reload would be inappropriate. The intended usage must be inferred.

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