Skip to main content
Glama
tina4stack

Claude Pascal MCP Server

by tina4stack

adb_tap

Simulate a tap at specified pixel coordinates on a connected Android device screen, enabling UI interaction and automated testing through ADB.

Instructions

Tap a point on the Android device screen.

Args: x: X coordinate in pixels. y: Y coordinate in pixels. device: Device serial number. If omitted, auto-selects when only one device is connected.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
xYes
yYes
deviceNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.13.6

TDQS

A4.1/5.0
Behavior3/5

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

With no annotations, the description must carry the full behavioral burden. It does state the core side effect (tapping a point), coordinate semantics, and device auto-selection when a single device is connected. However, it does not disclose failure behavior when multiple devices are present and no device is specified, or any other details about the tap lifecycle.

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

Conciseness5/5

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

The description is compact and well-structured, front-loading the action and then listing parameters in a readable Args block. Every sentence contributes useful information with no fluff.

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

Completeness4/5

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

For a simple coordinate-tap tool, this is nearly complete: all parameters are semantically explained Becker, output schema exists to cover return values, and device handling is stated. It could be slightly stronger by noting the coordinate origin or multi-device failure mode, but nothing essential is missing for correct invocation.

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

Parameters5/5

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

The schema provides only types and defaults, while the description adds real meaning: x and y are pixel coordinatesasi, and device is an optional serial number with auto-selection behavior. This fully compensates for the 0% schema description coverage.

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

Purpose5/5

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

The description states a specific action ('Tap') on a specific resource ('Android device screen') and grounds it in pixel coordinates. This immediately differentiates it from siblings like adb_swipe, adb_key, and adb_type_text.

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

Usage Guidelines3/5

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

The intended use is implied: tap at a pixel coordinate on the screen. However, there is no explicit guidance on when to use this instead of alternatives like adb_swipe or app_click, nor any when-not-to-use or exclusionary conditions beyond the device auto-selection note.

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