Skip to main content
Glama
tina4stack

Claude Pascal MCP Server

by tina4stack

adb_list_packages

List installed packages on a connected Android device, with optional text filtering by package name and device selection.

Instructions

List installed packages on the Android device.

Args: filter_text: Optional text to filter package names (case-insensitive). device: Device serial number. If omitted, auto-selects when only one device is connected.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
deviceNo
filter_textNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.13.6

TDQS

A3.9/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 behavioral burden. It does disclose the read-only nature, case-insensitive filtering, and auto-selection behavior when only one device is connected. However, it does not describe behavior when multiple devices are connected without a serial or define the scope of the returned package list.

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 front-loaded, using one clear purpose line followed by concise parameter explanations. Every sentence adds useful information without redundancy.

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?

The tool is simple, has no required parameters, and an output schema exists, so the description does not need to detail return values. It covers the core operation and parameter semantics well, leaving only minor gaps such as multi-device behavior.

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?

Schema coverage is 0%, but the description fully explains both parameters: filter_text is an optional case-insensitive filter, and device is the serial number with auto-selection behavior. This adds meaningful semantics beyond the schema's type and default information.

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 opens with 'List installed packages on the Android device', a specific verb and resource that clearly states the tool's function. It is easily distinguished from sibling adb_* tools such as adb_device_info or adb_install.

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?

No guidance is given about when to use this tool versus alternatives like adb_device_info or adb_install. The description covers parameter behavior but lacks explicit when-to-use or when-not-to-use context.

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