Skip to main content
Glama
yinnho

AginxBrowser

session_drag

Perform mouse drag actions between viewport coordinates, with configurable steps and delay, to move drag targets and canvas selections that track pointer movement.

Instructions

Drag the mouse from one viewport position to another: press at from, steps interpolated mousemove events (delay_ms apart), release at to. Moves AMarker-style drag targets and canvas selections that only track while the pointer travels.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
toYesWhere to release it
fromYesWhere to press the mouse button down
stepsNoInterpolated mousemove events between from and to (default 10)
delay_msNoDelay between moves in ms (default 30) — gives mousemove-driven widgets time to react per step
session_idYesSession ID

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv0.3.0

TDQS

A4.2/5.0
Behavior4/5

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

Annotations only provide a title, so the description carries the full behavioral burden. It discloses the sequence of events (press, interpolated moves, release), the timing parameters, and the specific widgets it affects. It does not mention whether it blocks or returns after sending events, but for a drag operation this is a reasonable level of disclosure.

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, well-structured sentence that front-loads the main action and then explains the mechanism. Every clause adds value; there is no redundancy or filler.

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 5-parameter tool with no output schema, the description covers the behavior, timing, and target types adequately. It does not explain return values (likely none) or session prerequisites, but these are implicitly covered by the schema and the tool's nature. It is complete enough for an agent to call it correctly.

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 coverage is 100%, so all parameters are already documented in the input schema with descriptions. The tool description essentially restates the flow (press at from, steps interpolated, release at to) but adds no new semantic meaning beyond the schema. The baseline of 3 applies since the schema handles the heavy lifting.

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 clearly states a specific action (drag the mouse) with the resource (viewport positions) and details the mechanism (press, interpolated moves, release). It also distinguishes the tool by noting it moves AMarker-style drag targets and canvas selections, separating it from generic click tools.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage for dragging operations that require mouse movement tracking, but it does not explicitly mention when to avoid it or name alternatives. It gives clear context about the type of targets it works on, which helps an agent decide, though not explicitly.

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