take-screenshot
Capture and save a screenshot from an Android device using the device ID and specify the local output path for storage via the MCP Appium Server.
Instructions
Take a screenshot on an Android device
Input Schema
Name | Required | Description | Default |
---|---|---|---|
deviceId | Yes | The device ID to take the screenshot from | |
outputPath | Yes | The local path to save the screenshot to |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"deviceId": {
"description": "The device ID to take the screenshot from",
"type": "string"
},
"outputPath": {
"description": "The local path to save the screenshot to",
"type": "string"
}
},
"required": [
"deviceId",
"outputPath"
],
"type": "object"
}