mobile_save_screenshot
Capture and save a screenshot of a mobile device to a specified file path using the Mobile Next MCP Server for automation tasks on iOS and Android.
Instructions
Save a screenshot of the mobile device to a file
Input Schema
Name | Required | Description | Default |
---|---|---|---|
saveTo | Yes | The path to save the screenshot to |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"saveTo": {
"description": "The path to save the screenshot to",
"type": "string"
}
},
"required": [
"saveTo"
],
"type": "object"
}