scroll-screen
Scroll the screen in a specified direction (up, down, left, right) with adjustable distance for precise mobile app automation in the MCP Appium Server.
Instructions
Scroll the screen in a specified direction
Input Schema
Name | Required | Description | Default |
---|---|---|---|
direction | Yes | Direction to scroll | |
distance | No | Distance to scroll as a percentage (0.0-1.0, default: 0.5) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"direction": {
"description": "Direction to scroll",
"enum": [
"up",
"down",
"left",
"right"
],
"type": "string"
},
"distance": {
"description": "Distance to scroll as a percentage (0.0-1.0, default: 0.5)",
"type": "number"
}
},
"required": [
"direction"
],
"type": "object"
}