Skip to main content
Glama
bidouilles

Mobile Pilot MCP

by bidouilles

get_device

Retrieve details about a specific iOS simulator by providing its UDID. Use it to identify device info before controlling simulators.

Instructions

Get information about a specific simulator.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
device_idYesSimulator UDID

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

C2.9/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full behavioral burden. It doesn't state that this is a read-only operation, what happens with an unknown/invalid UDID, or whether the device must be booted first — all relevant given siblings like boot_simulator and shutdown_simulator.

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

Conciseness4/5

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

A single front-loaded sentence with zero filler. It is efficient, though so terse that it verges on under-specification rather than optimal conciseness.

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

Completeness3/5

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

An output schema exists, so return values needn't be explained, and with only one well-documented parameter the description is close to sufficient. However, with no annotations it omits the read-only nature and any prerequisite (e.g., booted simulator), leaving gaps an agent might hit.

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%, and the schema documents device_id as 'Simulator UDID', so the baseline of 3 applies. The description adds no format or sourcing detail (e.g., where to obtain the UDID) beyond the schema.

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?

Clear verb+resource: 'Get information about a specific simulator' tells the agent exactly what it retrieves. It implicitly contrasts with the sibling list_devices (single vs. list), but never names or explicitly distinguishes that alternative.

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 when-to-use guidance and no mention of alternatives such as list_devices to discover a device_id before calling this. The agent must infer usage entirely from the tool name and the required device_id parameter.

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