Skip to main content
Glama
tina4stack

Claude Pascal MCP Server

by tina4stack

adb_type_text

Type text into a focused field on an Android device via ADB. Handles spaces and special characters automatically, with optional device selection.

Instructions

Type text on the Android device.

The text is escaped for the adb shell. Spaces and special characters are handled automatically. The device must have a text field focused.

Args: text: The text to type. device: Device serial number. If omitted, auto-selects when only one device is connected.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
textYes
deviceNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.13.6

TDQS

A4/5.0
Behavior4/5

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

With no annotations present, the description carries the behavioral burden. It discloses that text is escaped for the adb shell, that special characters are handled automatically, and that device auto-selection occurs when only one device is connected—valuable context beyond the schema.

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, front-loaded with the core action, and uses a short Args block for parameter details. Every sentence adds useful information without unnecessary elaboration.

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

Completeness5/5

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

For a 2-parameter tool with one required simple parameter and an output schema, the description covers the main behavior, prerequisites, and device-selection nuance. Nothing essential for calling the tool correctly is missing.

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

Parameters4/5

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

Schema description coverage is 0%, so the description must compensate. It adds useful meaning for 'device' by explaining serial number use and auto-selection behavior. The description of 'text' is minimal, but the parameter is self-explanatory and the escaping note adds practical context.

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 clearly states the action and resource: 'Type text on the Android device.' This is specific and understandable, though it does not explicitly distinguish itself from the similarly named sibling 'app_type'.

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 description gives an important prerequisite ('The device must have a text field focused') and explains device selection behavior, but it does not explain when to prefer this tool over alternatives like app_type or adb_key.

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