openLink
Automates opening a specified URL in the default browser on Android or iOS devices using the AutoMobile MCP server.
Instructions
Open a URL in the default browser
Input Schema
Name | Required | Description | Default |
---|---|---|---|
platform | Yes | Platform of the device | |
url | Yes | URL to open in the default browser |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"platform": {
"description": "Platform of the device",
"enum": [
"android",
"ios"
],
"type": "string"
},
"url": {
"description": "URL to open in the default browser",
"type": "string"
}
},
"required": [
"url",
"platform"
],
"type": "object"
}