adb_screenshot
Capture screenshots from connected Android devices remotely. Specify output path and device ID to save screenshots efficiently using the MCP server protocol.
Instructions
Take a screenshot of the connected Android device
Input Schema
Name | Required | Description | Default |
---|---|---|---|
device_id | No | Device ID/serial (optional, uses first device if not specified) | |
output_path | No | Local path to save the screenshot (default: screenshot.png) | screenshot.png |
Input Schema (JSON Schema)
{
"properties": {
"device_id": {
"description": "Device ID/serial (optional, uses first device if not specified)",
"type": "string"
},
"output_path": {
"default": "screenshot.png",
"description": "Local path to save the screenshot (default: screenshot.png)",
"type": "string"
}
},
"required": [],
"type": "object"
}