tap
Simulate touch interactions on iOS simulators by sending precise X and Y coordinates via the Model Context Protocol, enabling programmatic control for testing and development.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
sessionId | Yes | ||
x | Yes | ||
y | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"sessionId": {
"type": "string"
},
"x": {
"type": "number"
},
"y": {
"type": "number"
}
},
"required": [
"sessionId",
"x",
"y"
],
"type": "object"
}