mobile_use_device
Select a simulator, iOS, or Android device for mobile automation. Use this tool to specify a device type and name, enabling interaction with mobile applications through the MCP server.
Instructions
Select a device to use. This can be a simulator or an Android device. Use the list_available_devices tool to get a list of available devices.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
device | Yes | The name of the device to select | |
deviceType | Yes | The type of device to select |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"device": {
"description": "The name of the device to select",
"type": "string"
},
"deviceType": {
"description": "The type of device to select",
"enum": [
"simulator",
"ios",
"android"
],
"type": "string"
}
},
"required": [
"device",
"deviceType"
],
"type": "object"
}