Skip to main content
Glama

betadrop_publish

Upload an iOS (.ipa) or Android (.apk) build to BetaDrop, with optional release notes, version overrides, and expiry controls for tester distribution.

Instructions

Publish an iOS (.ipa) or Android (.apk) build to BetaDrop.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameNoOverride the app display name.
notesNoRelease notes shown on the install page.
versionNoOverride the version string (e.g. 1.2.3).
bundleIdNoOverride the bundle / package ID.
filePathYesAbsolute path to the build file (.ipa or .apk).
expiryTypeNoExpiry strategy for this build.
buildNumberNoOverride the build number.
expiryTimeDaysNoExpire after N days (requires expiryType 'time' or 'combined').
expiryDeviceLimitNoExpire after N unique devices (requires expiryType 'devices' or 'combined').
expiryDownloadLimitNoExpire after N downloads (requires expiryType 'downloads' or 'combined').

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.5

TDQS

B3.2/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 burden of behavioral disclosure. It only states the high-level 'publish' action without describing side effects, authentication needs, whether existing builds are replaced, or what the response looks like. This is similar to the 'update_drive' calibration example.

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 a single sentence, front-loaded with the action verb and resource, and contains no filler. It is as concise as possible while conveying the core operation.

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

Completeness2/5

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

Given 10 parameters, no annotations, and no output schema, the description is too sparse. It does not explain the workflow around publishing, including authentication, upload progress, return values, or how this step fits with sibling tools like betadrop_upload_status. The schema handles parameters but not operational context.

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%: every parameter, including the expiryType enum and conditional expiry limit fields, already has a descriptive schema entry. The tool description adds nothing beyond restating the .ipa/.apk types that filePath already documents, so the baseline 3 applies.

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 ('publish') with a clear resource ('an iOS (.ipa) or Android (.apk) build') and target platform ('to BetaDrop'). This makes the tool's action distinct from siblings like list_builds, token management, or upload_status.

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?

The description gives no guidance on when to use this tool vs alternatives, no mention of prerequisites like being logged in, and no indication of how this relates to betadrop_upload_status or betadrop_list_builds. Intended usage is only implied by the name and basic sentence.

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