Skip to main content
Glama

betadrop_upload_status

Fetch the result and install link of a publish upload that was still running. Use to check the final status of a previous build.

Instructions

Get the result of the most recent betadrop_publish upload, including the install link. Call this only when betadrop_publish reported the upload was still running.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.5

TDQS

A4.4/5.0
Behavior3/5

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

With no annotations provided, the description carries full burden for behavioral disclosure. 'Get' implies a read-only operation, and mentioning the install link hints at the return value, but it does not disclose what happens if called without a prior running upload, whether it blocks until completion, or whether it returns a transient 'still running' status versus a final result. These gaps leave some ambiguity.

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 exactly two sentences with no filler: the first states the action and output, the second states the sole invocation condition. Information is front-loaded and every word earns its place.

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 parameterless status-polling tool, the description covers the core purpose and the key usage condition. However, because there is no output schema and no annotations, it does not explain return structure, error behavior, or what happens if there is no upload in progress. These are minor gaps for such a simple tool, but they keep it from being fully complete.

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?

The tool takes zero parameters, so the schema fully covers parameter semantics. The description adds no parameter information, but none is required. Per calibration, 0 parameters earns a baseline of 4.

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 ('Get') and clearly identifies the resource ('result of the most recent betadrop_publish upload') and a key output ('install link'). It naturally distinguishes itself from siblings like betadrop_publish (the triggering action) and betadrop_list_builds (listing historical builds).

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?

It provides an explicit condition: 'Call this only when betadrop_publish reported the upload was still running.' This is a precise gate that tells the agent exactly when to invoke this tool and indirectly implies not to call it otherwise. No alternative tool is named, but the condition is sufficient given the sibling context.

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