Skip to main content
Glama
Fwmouomu
by Fwmouomu

list_device_pool

List all connected Android devices and emulators with their health and lease status to check which are usable before planning parallel Maestro test runs.

Instructions

List every connected Android device and emulator with its health and lease state.

Call this before planning any parallel work: it is the only way to learn how many devices are actually usable right now, and which of them are already held by runs in flight. A device is usable when adb reports state device; unauthorized and offline devices appear in the list but cannot run flows.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.4/5.0
Behavior4/5

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

With no annotations, the description carries the full burden and does well: it defines the `usable` state, and explains that `unauthorized` and `offline` devices still appear but cannot run flows. It does not cover permissions, pagination, or refresh cadence, so it is not fully exhaustive.

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?

Front-loaded with the core action, followed by a short usage instruction and a compact state glossary. Every sentence earns its place with no filler.

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?

There is no output schema, so the description must convey returns; it does so by naming health and lease state and defining the state values. Return structure (fields per device) remains unspecified, which is a minor gap.

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?

The tool takes zero parameters, so the baseline is 4 and there is nothing further for the description to document.

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?

States a specific verb and resource ('List every connected Android device and emulator') plus the fields returned (health and lease state). An agent can immediately distinguish it from siblings like health_check or run_parallel.

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

Usage Guidelines4/5

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

Explicitly prescribes timing ('Call this before planning any parallel work') and explains why it is the sole source of truth for usable device count. It does not name an alternative or a when-not condition, so it falls short of the top bar.

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