DroidMind

by hyperb1iss
Verified

capture_bugreport

Capture detailed bug reports from Android devices, including system logs, device state, and screenshots. Save the report to a specified path or retrieve it as text for diagnostics and troubleshooting.

Instructions

Capture a bug report from a device.

Bug reports are comprehensive diagnostic information packages that include system logs, device state, running processes, and more.

Args: serial: Device serial number ctx: MCP context output_path: Where to save the bug report (leave empty to return as text) include_screenshots: Whether to include screenshots in the report timeout_seconds: Maximum time to wait for the bug report to complete (in seconds)

Returns: Path to the saved bug report or a summary of the report contents

Input Schema

NameRequiredDescriptionDefault
include_screenshotsNo
output_pathNo
serialYes
timeout_secondsNo

Input Schema (JSON Schema)

{ "properties": { "include_screenshots": { "default": true, "title": "Include Screenshots", "type": "boolean" }, "output_path": { "default": "", "title": "Output Path", "type": "string" }, "serial": { "title": "Serial", "type": "string" }, "timeout_seconds": { "default": 300, "title": "Timeout Seconds", "type": "integer" } }, "required": [ "serial" ], "title": "capture_bugreportArguments", "type": "object" }
ID: p03zdsi6ol