Skip to main content
Glama

Augenix

Get preview build status

get_preview
Read-only

Use this after start_build. If status is ready, send preview_url immediately. If keep_polling is true or preview_url is null, call get_preview again with the same token. A progress card may appear and refresh itself. Pass wait=false only for a progress-card refresh. Do not start_build again.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
waitNoIf false, return the current snapshot immediately (progress card). Default true.
tokenYesToken returned by start_build. Pass the same token to get_preview, create_checkout, and get_live_site.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
okYes
errorYes
tokenYes
statusYes
messageYes
preview_urlYes
keep_pollingYes
progress_pctYes
progress_labelYes

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observed

TDQS

A4.9/5.0
Behavior5/5

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

Beyond the readOnlyHint annotation, the description discloses the polling behavior, the meaning of keep_polling and preview_url, the self-refreshing progress card, and the special wait=false mode. These are behavioral facts not available from annotations alone.

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, front-loads the trigger condition, and every sentence contributes a rule or constraint. There is no filler; even the progress-card sentence earns its place by explaining asynchronous UI behavior.

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 a polling tool with an output schema and read-only annotations, the description defines the full state-handling loop: when to poll again, when to send the preview URL, when to use wait=false, and when not to restart the build. Remaining details like exact status values are reasonably delegated to the output schema.

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 schema already documents token and wait with 100% coverage, so the baseline is 3. The description adds value by restricting wait=false to 'progress-card refresh' and emphasizing reuse of the same token, which are usage constraints not fully explicit in the schema.

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 title and description clearly identify a specific action: retrieving and acting on preview build status after start_build. The polling conditions and the explicit 'Do not start_build again' distinguish this tool from start_build and from the other sibling tools.

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 states the exact context ('Use this after start_build'), gives a concrete decision rule for when to poll again, and limits wait=false to progress-card refresh. It also explicitly tells the agent not to call start_build again, preventing a common mistake.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4.2/5.0
Disambiguation5/5

Each tool maps to a distinct stage in the workflow: building the preview, polling preview readiness, creating checkout, and checking live status. The descriptions reinforce the boundaries, especially between get_preview and get_live_site.

Naming Consistency4/5

Tool names follow a clear verb_noun pattern and are mostly consistent: get_preview and get_live_site share get_, and create_checkout uses create_. start_build is a minor deviation since 'start' could have been 'create' or 'build', but the naming remains predictable and readable.

Tool Count5/5

Four tools is appropriate for this focused preview-and-live-site pipeline. Each tool covers an essential step without redundancy or unnecessary bloat.

Completeness3/5

The core flow from build to preview to checkout to live site is covered, but the start_build description explicitly says users can change details after the preview, and no update or edit tool exists. This leaves a notable dead end for post-preview modifications.

Resources