Skip to main content
Glama

browser_reload

Refresh the current browser page. Set ignore_cache to true to skip cached content and retrieve the page from the network.

Instructions

Reload the current page.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
ignore_cacheNoWhether to ignore cache on reload

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.8.0

TDQS

B3.2/5.0
Behavior2/5

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

With no annotations, the description carries the full behavioral burden, and it says nothing beyond the literal action. It does not disclose whether the call blocks until load completes, how it interacts with in-flight navigation, or that a normal reload may serve cached content (the cache nuance lives only in the schema).

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?

A single front-loaded sentence with zero filler; every word earns its place for a simple action tool.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a one-optional-param, no-output-schema action, the description is nearly sufficient to call the tool correctly. The only shortfall is the absence of any note on blocking/wait behavior, which an agent orchestrating a page load might need.

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 parameter (ignore_cache) is fully documented in the schema. The description adds no parameter meaning beyond that, 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 and resource ('Reload the current page'), which is unambiguous and distinguishable from siblings like browser_navigate, browser_forward, and browser_back. However, it does not explicitly contrast itself with those navigation siblings, so it stops short of a 5.

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 reload versus alternatives such as browser_navigate (fresh URL load) or browser_forward/back. The purpose is implied by the verb but no context, prerequisites, or exclusions are given.

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