Skip to main content
Glama
PaboluManohar

Android Mobile MCP Server

Allocate Remote Device

mobile_allocate_remote_device

Reserve a physical cloud device for exclusive remote use, returning an ID for other mobile tools. Filters by platform, name, and OS version, and optionally waits until ready.

Instructions

Reserve a physical device from the remote cloud fleet for exclusive use, returning a device identifier usable with the other mobile_* tools. Unlike local devices, a remote device is a shared and billed resource borrowed for the session - only call this after the user has explicitly asked to use a remote/cloud device, never speculatively or as a fallback when a local device isn't found. Requires mobile_login_to_cloud_provider to have been called first; if this fails with an authentication error, call that tool then retry. Use mobile_list_remote_devices first to see which names and versions actually exist in the fleet before filtering by them. Release the device with mobile_release_remote_device once the whole task is finished - releasing wipes the device's state, so do not release and reallocate between steps of the same task just to be tidy.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameNoFilter by device name/model. Supports a trailing * for prefix match (e.g. "iPhone*"), or an exact name (e.g. "iPhone 16").
typeNoDevice type filter. Currently only "real" (physical devices) is supported by the fleet.
waitNoIf true, block until the device has finished allocating and is ready to use, up to timeoutSeconds. If false/omitted, this returns as soon as the reservation is made, but the device may not be immediately ready.
versionNoFilter by OS version. Supports comparison prefixes >=, >, <=, < (e.g. ">=18"), or an exact version (e.g. "18.6.2"). Multiple values are ANDed together.
platformYesThe platform to allocate a device for
timeoutSecondsNoSeconds to wait for allocation when wait is true. Defaults to 900 (15 minutes). Only relevant when wait is true.
Install Server

TDQS

A4.7/5.0
Behavior5/5

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

Beyond the annotations, it discloses that the device is shared and billed, borrowed for the session only, and that releasing wipes the device's state. It also exposes the authentication dependency and the retry-on-auth-error behavior. These are material behavioral traits not already present in readOnlyHint/openWorldHint/destructiveHint, and there is no contradiction with the annotations.

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 dense but every sentence carries operational weight: purpose, exclusivity/billing caveat, explicit user-consent constraint, auth prerequisite, listing prerequisite, and release/wipe warning. The most important selection information is front-loaded in the first sentence, and the warnings come after the core usage context.

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 state-changing cloud allocation tool with no output schema, the description explains what the call returns (a usable device identifier), how long the device is held, what must happen before and after, and how to handle a common auth failure. Nothing needed to invoke it correctly is missing.

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%, so the baseline is 3; the schema already documents every parameter including filters, wait behavior, and timeout semantics. The description adds useful operational advice to call mobile_list_remote_devices before filtering by name/version, but it does not materially expand on the parameter meanings themselves.

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 first sentence names a specific verb ('Reserve'), a specific resource ('physical device from the remote cloud fleet'), and the key output ('a device identifier usable with the other mobile_* tools'). It clearly distinguishes remote allocation from local devices and from listing remote devices, so an agent can select it correctly among many siblings.

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

Usage Guidelines5/5

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

The description gives explicit when-to-use guidance: only after the user explicitly asks for a remote/cloud device, never speculatively or as a fallback. It also states ordering prerequisites (login first, list devices before filtering), an error-and-retry path for authentication failures, and the required release step afterward.

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

Other Tools

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/PaboluManohar/DevAutoFlow-MCP'

If you have feedback or need assistance with the MCP directory API, please join our Discord server