Skip to main content
Glama
tina4stack

Claude Pascal MCP Server

by tina4stack

ios_install_ipa

Install an .ipa on a physical iOS device attached to the Mac. Provide the device UDID, connection profile, and .ipa path to deploy the app directly to the connected iPhone or iPad.

Instructions

Install an .ipa on an iOS device attached to the Mac (paclient -ii).

The iOS device must be physically connected to the Mac, trusted, and listed by xcrun devicectl. Find the UDID via idevice_id -l on the Mac, or in Xcode → Window → Devices and Simulators.

Note: this is for device installation. Simulator installation needs xcrun simctl install which paclient does NOT wrap — that's tracked under issue #5 (sim_* tools).

Args: profile: Connection Profile name. ipa_path: Remote path to the .ipa on the Mac. device_udid: Target iOS device UDID. timeout: Seconds before killed. studio_root: Optional Studio install root.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
profileYes
timeoutNo
ipa_pathYes
device_udidYes
studio_rootNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.13.6

TDQS

A4.6/5.0
Behavior4/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It discloses prerequisites and constraints: the device must be physically connected, trusted, and listed by xcrun devicectl; it wraps a specific command (paclient -ii); and it includes a timeout after which the process is killed. It does not describe overwrite behavior or signing requirements, but for an install command the main behavior is clear.

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?

The description is front-loaded with the core action and resource, followed by prerequisites aids and an arg list. It is concise overall, but the reference to 'tracked under issue #5 (sim_* tools)' adds internal project noise that is not useful for an AI agent selecting the tool.

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 this moderately complex 5-parameter tool with no annotationscoal, the description is complete: it explains the command wrapper, prerequisites, how to find a UDID, the parameter semantics, the simulator exclusion, and the timeout behavior. Since an output schema exists, the description does not need to document return values.

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?

Schema description coverage is 0%, and the description compensates by listing all five parameters with meanings: profile as a connection profile name, ipa_path as a remote Mac path, device_udid as the target UDID, timeout as seconds before being killed, and studio_root as optional. Some entries, especially 'profile', are somewhat terse, but the list meaningfully adds beyond the bare property names.

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 states a specific verb ('Install'), a specific resource ('.ipa'), and a specific target ('iOS device attached to the Mac'), along with the underlying command 'paclient -ii'. It also explicitly distinguishes itself from simulator installation, so an agent can clearly tell it apart from sim_install.

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 explicitly says this is for device installation, not simulator installation, and notes that simulator installation requires 'xcrun simctl install', which 'paclient does NOT wrap'. It also gives preconditions (device physically connected, trusted, listed by devicectl), giving the agent concrete when-to-use and when-not-to-use guidance.

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