stop-recording
End screen recording sessions on the MCP Appium Server and save the captured data to a specified file path for further use in mobile app automation.
Instructions
Stop recording the screen and get the recording data
Input Schema
Name | Required | Description | Default |
---|---|---|---|
outputPath | Yes | File path to save the recording |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"outputPath": {
"description": "File path to save the recording",
"type": "string"
}
},
"required": [
"outputPath"
],
"type": "object"
}