mobile_list_apps
Retrieve a list of installed applications on a mobile device for automation and testing purposes using the Mobile Next MCP server.
Instructions
List all the installed apps on the device
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| device | Yes | The device identifier to use. Use mobile_list_available_devices to find which devices are available to you. |
Implementation Reference
- src/server.ts:211-222 (handler)Handler and registration for the 'mobile_list_apps' tool. It requires a selected robot/device, calls listApps() on it, and returns a formatted list of installed apps with names and package names.tool( "mobile_list_apps", "List all the installed apps on the device", { noParams }, async ({}) => { requireRobot(); const result = await robot!.listApps(); return `Found these apps on device: ${result.map(app => `${app.appName} (${app.packageName})`).join(", ")}`; } );