android_screenshot
Capture screenshots from Android devices for debugging, documentation, or testing purposes using ADB commands.
Instructions
Capture a screenshot from the Android device
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| outputPath | No | Local path to save the screenshot (optional). If not provided, returns base64 encoded image. | |
| deviceSerial | No | Specific device serial number to target (optional) |
Input Schema (JSON Schema)
{
"properties": {
"deviceSerial": {
"description": "Specific device serial number to target (optional)",
"type": "string"
},
"outputPath": {
"description": "Local path to save the screenshot (optional). If not provided, returns base64 encoded image.",
"type": "string"
}
},
"type": "object"
}