Skip to main content
Glama

betadrop_list_builds

List recent builds published to BetaDrop, filtering by platform (iOS/Android) and status to find specific releases. Get paginated results to manage distribution.

Instructions

List recent builds published to BetaDrop, optionally filtered by platform and status.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pageNoPage number (default 1).
statusNoFilter by status. Omit to list all.
perPageNoResults per page (default 20, max 100).
platformNoFilter by platform. Omit to list all.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.5

TDQS

B3.1/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 implies a read-only operation by saying 'List', and 'recent' suggests temporal ordering, but it does not disclose pagination behavior, authentication requirements, sorting details, or whether all statuses are included by default.

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, efficient sentence that front-loads the main action and then states the optional filters. Every phrase earns its place, and there is no redundant information.

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?

For a simple listing tool with fully documented parameters, the description is mostly adequate. However, with no output schema and no annotations, it does not mention return format, default sort order, or the relationship to betadrop_list_expired_builds, leaving some ambiguity for an agent selecting between siblings.

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 already documents all four parameters with descriptions and enums, so the description adds little semantic value. The mention of filtering by platform and status matches the schema but does not go beyond it; baseline 3 applies because schema coverage is 100%.

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?

The description names a specific verb and resource: list builds on BetaDrop, with optional filtering by platform and status. It is clear about what the tool does and its scope, though it does not explicitly distinguish itself from the sibling betadrop_list_expired_builds, which overlaps because 'expired' is a status filter value.

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?

There is no guidance about when to use this tool versus alternatives such as betadrop_list_expired_builds. The phrase 'optionally filtered by platform and status' hints at usage scenarios but does not state exclusions or point to a more specialized sibling.

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