Skip to main content
Glama

refresh_web_page

Reload the current page in a Lemon iOS embedded WKWebView to apply changes or recover from loading errors. Use it for manual page reloads on an iPhone web view.

Instructions

Reloads the current page in the Lemon iOS embedded WKWebView.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

B3.4/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 behavioral burden, and it discloses almost nothing beyond the execution target. It does not say whether in-page state (form input, scroll position, session) is discarded, what happens if no page is currently open, or whether the call blocks until load completes.

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 action and object, with no filler. Every word earns its place.

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 zero-argument action with no output schema this is close to sufficient, but with no annotations the description should at least cover the no-page-open case and whether page state is lost. It leaves those gaps for a tool that mutates browser state.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The tool takes zero parameters, so the baseline is 4; there is nothing for the description to clarify or compensate for. The single sentence adds no parameter detail because none is needed.

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 (reloads) and resource (the current page), plus the execution context (Lemon iOS embedded WKWebView). This implicitly separates it from open_web_page and go_back/go_forward_web_page, but it never names a sibling or spells out the distinction explicitly.

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?

Usage is only implied: an agent can infer you reload when the current page needs refreshing, as opposed to opening a new one. There is no explicit when-to-use statement, no mention of alternatives, and no conditions such as 'no page open' behavior.

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