Skip to main content
Glama

Postclick by PPC.io: Landing Page CRO

Check how a page build is going

get_build
Read-onlyIdempotent

Free. Returns the build's status and, once finished, the complete page. A build takes 15 to 25 minutes, so poll it with wait set to 300: the call holds open and returns the moment the stage moves or the page is ready, which turns a twenty-minute build from dozens of identical reads into a handful of calls that each have something to report. When a call comes back with the same stage you already mentioned, say nothing and call again rather than paraphrasing yourself. A status of running is non-terminal and contains no page. By default the HTML is summarised rather than returned in full, because a page is tens of thousands of characters and would flood the conversation. Set include_html when the user actually wants the file, for example to save it locally and open it. Includes elapsed_seconds: the true age of the build, measured server side from its start timestamp.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
waitNoSeconds to wait for a material change. Use 25 for broad client compatibility; longer waits are available for hosts that support them. A timeout preserves the run; resume by ID instead of starting again.
build_run_idYes
include_htmlNoReturn the full page HTML. Large. Default false.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

A4.7/5.0
Behavior5/5

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

Goes well beyond the readOnly/idempotent annotations: build duration of 15-25 minutes, that running is non-terminal and contains no page, that HTML is summarised by default to avoid flooding context, and that elapsed_seconds is server-measured build age. This is exactly the operational context an agent needs for long-poll behavior.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Front-loaded with the core contract and free of padding in the opening lines, but the middle digression about a twenty-minute build becoming a handful of calls is restated at some length. Dense but slightly over-explained.

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?

No output schema exists, so the description carries the return contract itself — status stages, non-terminal running, summarized vs. full HTML, and elapsed_seconds — and it does so completely for a 3-parameter polling tool.

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?

With only 67% schema coverage, the description compensates: it explains the rationale for wait=300 (blocks until a material change, collapsing repeated reads) and the purpose of include_html (full page is tens of thousands of characters). It also explains the otherwise-undocumented elapsed_seconds return field.

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?

States a specific verb and resource: returns a build's status and, once finished, the complete page. It is clearly the polling counterpart to siblings like build_page, though it never names that sibling to draw the contrast explicitly.

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?

Explicit when-to-use and how: poll with wait=300, use include_html only when the user actually wants the file (e.g. to save locally), and stop and re-poll silently when the stage is unchanged. It even covers the failure mode of idempotent resumption by ID instead of restarting.

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.

Resources