mobile_launch_app
Open specific mobile apps by package name for automation testing or interaction, integrated with the Mobile Next MCP server for platform-agnostic mobile device control.
Instructions
Launch an app on mobile device. Use this to open a specific app. You can find the package name of the app by calling list_apps_on_device.
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| packageName | Yes | The package name of the app to launch | 
Input Schema (JSON Schema)
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "additionalProperties": false,
  "properties": {
    "packageName": {
      "description": "The package name of the app to launch",
      "type": "string"
    }
  },
  "required": [
    "packageName"
  ],
  "type": "object"
}