Skip to main content
Glama
guru-prasath-j

flutter-ios-bridge-mcp

asc_register_device

Register an iPhone for ad-hoc/development builds. Provide a UDID or, if omitted, automatically use the USB-connected iPhone (requires pymobiledevice3).

Instructions

Register an iPhone for ad-hoc/development builds. With no udid, uses the USB-connected device (needs pymobiledevice3).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameNo
udidNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4/5.0
Behavior3/5

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

There are no annotations, so the description carries the behavioral burden. It discloses a key behavior: with no udid, the tool uses the USB-connected device and requires pymobiledevice3. However, it does not mention authentication requirements, side effects of registering a device, or what happens on failure.

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 two concise sentences, front-loading the core purpose and then adding the conditional USB behavior. Every sentence earns its place with no filler or repetition.

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?

For a tool with two optional parameters and no output schema, the description is largely complete: it states the purpose, the primary invocation path, and a prerequisite. The main omissions are name semantics and expected result/error behavior, but they are not critical for a low-complexity registration tool.

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?

The input schema has 0% description coverage, so the description must compensate. It adds meaningful semantics for udid by explaining that omitting it triggers USB-device detection, but it does not explain the name parameter at all, leaving the parameter semantics only partially clarified.

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 uses a specific verb and resource: 'Register an iPhone for ad-hoc/development builds.' This clearly distinguishes the tool from sibling registration tools like asc_register_bundle_id and device_install_app, while also conveying the intended purpose.

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?

The description provides clear usage context: it registers an iPhone for ad-hoc/development builds, and states the conditional behavior that with no udid it uses the USB-connected device. It also names the dependency pymobiledevice3, which is useful prerequisite guidance, though it does not explicitly name alternatives.

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