android-screenshot
Capture and retrieve screenshots from Android devices using the device serial number and customizable image quality. Integrates with DroidMind MCP server for efficient device management and automation.
Instructions
Get a screenshot from a device.
Args: serial: Device serial number ctx: MCP context quality: JPEG quality (1-100, lower means smaller file size)
Returns: The device screenshot as an image
Input Schema
Name | Required | Description | Default |
---|---|---|---|
quality | No | ||
serial | Yes |
Input Schema (JSON Schema)
{
"properties": {
"quality": {
"default": 75,
"title": "Quality",
"type": "integer"
},
"serial": {
"title": "Serial",
"type": "string"
}
},
"required": [
"serial"
],
"title": "screenshotArguments",
"type": "object"
}