record_screen
Capture Android device screen activity by specifying output path and recording duration using the screen recording tool on espresso-mcp server.
Instructions
Record the screen of the connected Android device for a specified duration
Input Schema
Name | Required | Description | Default |
---|---|---|---|
duration | Yes | ||
output_path | Yes |
Input Schema (JSON Schema)
{
"properties": {
"duration": {
"title": "Duration",
"type": "integer"
},
"output_path": {
"title": "Output Path",
"type": "string"
}
},
"required": [
"output_path",
"duration"
],
"title": "record_screenArguments",
"type": "object"
}