Skip to main content
Glama
v76ADrR
by v76ADrR

browser_scroll

Scroll the current browser tab by a mouse wheel delta to view content beyond the visible viewport. Adjust dx and dy values for horizontal or vertical scrolling.

Instructions

Scroll the current tab with a mouse wheel delta.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
dxNo
dyNoVertical delta pixels (default 600, negative = up)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

C2.8/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. It states the mechanism (mouse wheel delta) and the target (current tab), but says nothing about whether scrolling is async, whether it triggers lazy-loading, what happens at scroll boundaries, or the return behavior.

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 efficient sentence with the action front-loaded and no wasted clauses. It is terse, though arguably under-specified rather than tightly concise.

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 low-complexity two-parameter tool with no output schema, the description is minimally adequate, but the undocumented dx parameter and absent behavioral notes (async, defaults, return) leave real gaps for an agent invoking it correctly.

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 coverage is only 50%: dy is documented with default and sign convention, but dx is undocumented in both the schema and the description. The phrase 'mouse wheel delta' gestures at the dx/dy pair but adds no units, defaults, or sign conventions to compensate for the gap.

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 gives a specific verb+resource ('Scroll the current tab') with an implementation detail ('mouse wheel delta'), clearly distinguishable from siblings like browser_click or browser_navigate. It stops short of explicitly contrasting with any sibling, but the purpose is unambiguous.

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 when-to-use guidance, no preconditions, and no mention of alternatives (e.g., browser_press for keyboard paging). 'Current tab' implies the target but not when scrolling is the right call.

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