Skip to main content
Glama
bidouilles

Mobile Pilot MCP

by bidouilles

pinch

Zoom iOS simulator screens in or out by simulating a two-finger gesture at specified coordinates and scale factor.

Instructions

Perform a pinch gesture (zoom in/out) at coordinates.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
xYesCenter X coordinate for pinch
yYesCenter Y coordinate for pinch
scaleYesScale factor: <1.0 to zoom out, >1.0 to zoom in
velocityNoPinch velocity in scale factor per second
device_idYesSimulator UDID

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

C2.9/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full behavioral burden. It does not disclose gesture duration, whether the call blocks until the gesture completes, how velocity interacts with the gesture, or any failure/retry behavior, leaving the agent with only the bare action semantics.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

A single front-loaded sentence with the action verb first and zero filler. It is efficient, though there is so little content that nothing beyond the core action is anchored for the reader.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

An output schema exists, so return values need not be described, and all five parameters are documented in the schema. However, for an unannotated device-interaction tool with a timing-sensitive velocity parameter, the description omits any gesture-timing or completion behavior, leaving it only minimally complete.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100% and the schema already explains x/y as the pinch center, scale as the zoom direction, velocity as scale-per-second, and device_id as the simulator UDID. The description adds nothing beyond 'at coordinates' mapping loosely to x/y, so baseline 3 applies.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a specific verb ('Perform a pinch gesture') and the resource/effect (zoom in/out) plus where it happens (at coordinates), which is unambiguous against siblings like tap, swipe, double_tap, and long_press. It stops short of explicitly differentiating from those siblings, so a 4 rather than 5.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The parenthetical '(zoom in/out)' implies the intent of the gesture, but there is no guidance on when to choose pinch over swipe, double_tap, or other gestures, nor any preconditions. Like the update_drive calibration case, this lacks any when-to-use or alternative routing.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.