Skip to main content
Glama

browser_set_value_ref

Fill a browser snapshot reference with a value while keeping that value out of the tool result, useful for secure form entry during web automation.

Instructions

Fill a snapshot ref without echoing the value into the tool result.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
refYes
valueYes
observeNocompact
session_idNo
timeout_msNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

C2.6/5.0
Behavior2/5

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

With no annotations provided, the description carries the full behavioral burden. It usefully discloses that the value is not echoed into the tool result, but it omits other important traits such as mutation side effects, event triggering, session requirements, timeout behavior, and whether the operation is reversible.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness3/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single sentence with no wasted words and front-loads the action. However, it is too terse for a five-parameter browser automation tool with no schema descriptions or annotations, so conciseness comes at the cost of necessary detail.

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?

Given the tool's complexity, lack of annotations, and 0% schema description coverage, the description is substantially incomplete. It covers one behavioral guarantee but leaves parameter semantics and most operational context undocumented, though the presence of an output schema reduces the need to explain return values.

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

Parameters2/5

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

Schema description coverage is 0%, so the description must compensate for all five parameters. It loosely corresponds to the required ref and value parameters, but provides no format details and completely omits the observe, session_id, and timeout_ms parameters.

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?

The description states a specific action ('Fill') and target ('snapshot ref'), making the basic purpose identifiable. However, it does not distinguish this tool from sibling tools like browser_type_text_ref or browser_set_form_values, so an agent must infer the difference.

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 tool versus alternatives, no prerequisites, and no mention of browser session requirements. The only implicit usage signal is that a snapshot ref is needed, which comes from the parameter name rather than the description.

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