Loading...
npx @mobilenext/mobile-mcp@latest{
"mcpServers": {
"mobile-mcp": {
"command": "npx",
"args": ["-y", "@mobilenext/mobile-mcp@latest"]
}
}
}mobile_list_available_devicesLists all available mobile devices (simulators, emulators, and real devices) connected to the system.
Read-only operation with no side effects.
mobile_get_screen_sizeRetrieves the screen size of the mobile device in pixels.
Read-only operation; no modification of the system.
mobile_launch_appLaunches a mobile application using its package name.
Can launch unintended or malicious apps if the package name is compromised.
mobile_terminate_appStops and terminates a running mobile application.
Can terminate critical apps, causing disruption.
mobile_install_appInstalls a mobile application from a file (.apk, .ipa, .app, .zip).
Installing untrusted apps can introduce malware or vulnerabilities.
mobile_uninstall_appUninstalls a mobile application using its bundle ID or package name.
Can uninstall critical apps, potentially causing data loss or system instability.
mobile_click_on_screen_at_coordinatesClicks on the mobile device screen at specific x,y coordinates.
Can trigger unintended actions if coordinates are not carefully validated.
mobile_type_keysTypes text into focused elements on the mobile device screen.
Can enter malicious commands or sensitive data if not properly controlled.
mobile_open_urlOpens a URL in the device browser.
Opening untrusted URLs can lead to phishing or malware downloads.
The Mobile Next MCP server is relatively safe for read-only operations and simple interactions. However, installing untrusted apps or automating complex workflows without careful validation could lead to security risks. Exercise caution when using tools that modify device settings or interact with sensitive data.