Skip to main content
Glama

android_scroll

Destructive

Scroll the visible content on an Android device in the specified direction to navigate or reveal additional content.

Instructions

Scroll content in the specified direction.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
directionYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.6.0

TDQS

B3.1/5.0
Behavior3/5

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

Annotations already indicate destructiveHint=true and readOnlyHint=false, so the side-effect profile is known. The description adds no extra behavioral context, but it does not contradict the annotations either.

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?

The description is a single clear sentence with no redundant words. It is appropriately concise and front-loaded for a simple scrolling action.

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 simple tool, the description is adequate, but it lacks broader context such as how scrolling interacts with the UI hierarchy or when to prefer this over gestures like swipe. It is not fully self-contained in the tool ecosystem.

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?

The schema defines the direction enum but provides no description for the parameter. The description only says 'specified direction' without explaining scroll behavior (e.g., amount, viewport, or edge cases), so parameter semantics are minimally covered.

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 clearly states the action ('scroll content') and the key variable ('specified direction'), which is sufficient to understand the tool's basic purpose. It is not overly generic and aligns with the enum-based direction parameter.

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?

No guidance is provided about when to use this tool versus related tools like android_swipe or android_ui_click. The description does not mention suitable contexts, limitations, or alternatives.

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