Loading...
{
"mcpServers": {
"droidmind": {
"command": "uvx",
"args": [
"--from",
"git+https://github.com/hyperb1iss/droidmind",
"droidmind",
"--transport",
"stdio" // The default and preferred mode for most IDE integrations
]
}
}
}list_devicesLists connected Android devices and their properties.
Read-only operation, no side effects.
take_screenshotCaptures a screenshot of the specified Android device.
Read-only operation, retrieves data from the device.
install_apkInstalls an APK file on the specified Android device.
Can introduce malicious software if the APK is not trusted.
get_crash_logsRetrieves recent crash logs from the specified Android device.
Read-only operation, retrieves log data.
tapSimulates a tap action on the specified coordinates of the Android device.
Can trigger unintended actions if coordinates are not carefully chosen.
execute_shell_commandExecutes an arbitrary shell command on the Android device.
Can lead to arbitrary code execution and system compromise if not properly validated.
DroidMind offers a security framework, but the inherent risks of ADB and shell execution mean careful usage is required. It is safe when used for read-only operations and with thorough validation of commands. It becomes risky when executing arbitrary shell commands or performing file system writes without proper safeguards.