Skip to main content
Glama
tina4stack

Claude Pascal MCP Server

by tina4stack

ios_create_ipa

Package a signed iOS .app into an .ipa on a remote Mac using a certificate and provisioning profile, with support for ad-hoc or App Store distribution.

Instructions

Package a signed .app into an .ipa on the remote Mac (paclient -i).

The .app must be codesigned first (ios_codesign). The provisioning profile must exist on the Mac and match the cert + bundle ID. IPA assembly runs entirely on the Mac via xcrun.

Args: profile: Connection Profile name. app_path: Remote path to the signed .app. out_path: Remote path where the .ipa should be written. certificate: Same identity used for codesign. provisioning_profile: Remote path to a .mobileprovision file. ipa_type: 1 = ad-hoc / dev distribution, 2 = App Store. Default 1. timeout: Seconds before killed (default 600). studio_root: Optional Studio install root.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
profileYes
timeoutNo
app_pathYes
ipa_typeNo
out_pathYes
certificateYes
studio_rootNo
provisioning_profileYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.13.6

TDQS

A4.5/5.0
Behavior4/5

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

With no annotations provided, the description carries full responsibility for behavioral disclosure. It explains that IPA assembly runs entirely on the Mac via xcrun, states the prerequisite codesigning step, specifies ipa_type semantics, and notes the timeout behavior. This is meaningful behavioral context beyond the bare tool name.

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 compact and well organized, with the core purpose stated first and a clean Args list afterward. Every sentence earns its place, covering prerequisites, execution context, and all parameters without fluff.

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?

Given the tool's complexity, eight parameters, zero annotations, and an output schema, the description is largely complete: it provides prerequisites, remote-execution context, parameter semantics, and defaults. It does not describe output details, but the output schema covers that responsibility. Minor edge cases like whether out_path directory creation or certificate matching validation are not discussed, but not essential for basic correct use.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, so the description must compensate, and it does: every parameter is explained, including defaults for ipa_type and timeout and the optional studio_root. Each argument's role in the packaging workflow is clear enough for correct invocation.

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 opens with a specific verb and resource: 'Package a signed .app into an .ipa on the remote Mac (paclient -i).' It states the exact artifact transformation and platform, and clearly distinguishes this tool from related siblings like ios_codesign and ios_install_ipa. An agent can understand what the tool does and why it exists without reading the schema.

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 gives concrete when-to-use guidance: the .app must be codesigned first via ios_codesign, and the provisioning profile must exist and match the certificate and bundle ID. It clearly implies the correct sequencing among siblings, though it does not explicitly call out alternatives for installing or signing specifically.

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