Skip to main content
Glama

Go Rocket

Server Details

Turn any website URL into a 9:16 AI video ad with a photoreal presenter, in 21 languages.

If you are the author of this connector, you can claim ownership by verifying the domain or GitHub account it belongs to. Claimed connector authors can inspect health checks, view analytics, and manage their listing.
Status
Healthy
Last Tested
Transport
Streamable HTTP · MCP 2025-11-25
URL

TDQS

A4.3/5.0

Scored across 3 tools

Disambiguation5/5

The three tools map cleanly onto distinct workflow stages: starting a sample (get_video_sample), polling its state (get_sample_status), and obtaining the payment link (get_checkout_link). There is no overlap in purpose, and each description clarifies its role and dependencies.

Naming Consistency5/5

All three tools follow the same get_<resource>_<qualifier> snake_case pattern (get_video_sample, get_sample_status, get_checkout_link). Verbs and structure are uniform and predictable.

Tool Count4/5

Three tools is a lean but coherent set for a narrow sample-to-purchase workflow. It is slightly thin — no separate tool for post-purchase video retrieval or purchase-parameter submission — but nothing feels redundant.

Completeness4/5

The core lifecycle (generate sample, poll to ready, get checkout link, observe 'purchased') is covered. Minor gaps remain: no tool to submit presenter/message/language selections or to check the finished video after payment, though those appear to happen in the browser.

Available Tools

3 tools
get_sample_statusCheck whether a sample is readyA
Read-onlyIdempotent
Inspect

Poll a sample started by get_video_sample. Returns state 'reading', 'ready' (with the sample), 'failed' (the site could not be read; nothing to buy) or 'purchased' (already bought).

ParametersJSON Schema
NameRequiredDescriptionDefault
claim_tokenYes

TDQS

A4/5.0
Behavior4/5

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

Annotations already declare this a safe, idempotent read, so the safety profile is covered. The description adds real behavioral value by enumerating the full state machine ('reading', 'ready', 'failed', 'purchased') and clarifying what each means, including that 'failed' means nothing to buy. It stops short of describing retry cadence or rate limits, but that's a smaller gap against existing annotations.

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?

Two tightly packed sentences: purpose and origin first, then the return states. No filler, no repetition of the title, and nothing that fails to earn 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 polling tool with no output schema, the description carries the essential return-value information and links back to the initiating tool. The remaining gaps (obtaining claim_token, polling cadence) are minor given annotations already cover the read-only/idempotent traits.

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 single parameter claim_token has 0% schema description coverage, so the description must compensate and only partially does. "A sample started by get_video_sample" implies the token's provenance but never says explicitly that claim_token is the value returned by that call or what format it takes.

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?

States a specific verb ("Poll") and resource ("a sample started by get_video_sample"), and explicitly anchors the tool to the sibling that creates the sample. An agent can distinguish it from get_video_sample and get_checkout_link without opening any schema.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The phrasing "Poll a sample started by get_video_sample" implies the tool is used after starting a sample, and "Poll" hints at repeated invocation. However, it never states when to stop polling, which states warrant a retry, or how it relates to get_checkout_link once the sample is ready.

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

get_video_sampleGet a sample video ad for a websiteAInspect

Give a website URL and get back a blurred sample of the video ad Go Rocket would make for it (a photoreal AI presenter talking about the product, 9:16, brand colours from the page), plus a claim token for the checkout. Reading the page takes about 20 to 40 seconds; the tool waits up to wait_seconds and otherwise returns state 'reading': then call get_sample_status with the claim token every few seconds until it is 'ready'. Nothing is generated or charged by this call.

ParametersJSON Schema
NameRequiredDescriptionDefault
urlYesThe product or company website, e.g. https://example.com
wait_secondsNoHow long to wait for the sample (default 8).

TDQS

A4.8/5.0
Behavior5/5

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

Annotations only say readOnlyHint=false, openWorldHint=true, idempotentHint=false; the description adds the behavior that actually matters: 20-40 second page reads, the wait_seconds cap, the 'reading' state fallback, and the assurance that nothing is generated or charged by this call. That resolves the tension an agent would feel seeing readOnlyHint=false on a sampling tool.

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-loads the core contract (give URL, get blurred sample + claim token) before the operational detail, and every sentence carries information. The parenthetical describing the sample format is somewhat dense but earns its place by setting expectations for the output.

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?

With no output schema, the description compensates by naming the returned artifacts (blurred sample, claim token) and the state field, plus the follow-up tool and timing. Nothing needed to invoke this correctly or handle its response is missing.

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?

Schema coverage is 100%, so baseline is 3, but the description explains the runtime meaning of wait_seconds (the tool waits that long, otherwise returns state 'reading') rather than just its type range. The url parameter's role and the reason for the delay are also contextualized.

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?

States a specific verb and resource plus the concrete return value: a blurred sample video ad built from a URL, with a claim token. It also names the sibling get_sample_status and the condition for switching to it, so the agent can tell it apart from get_checkout_link and get_sample_status without opening schemas.

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?

Explicitly describes the async flow: call this first, if it returns state 'reading' poll get_sample_status with the claim token every few seconds until 'ready'. It also sets expectations that generation/charging happen later, not here, which tells the agent this is the entry point rather than a one-shot result fetch.

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

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections.

  1. 3 tool updates
    • First observedget_checkout_link
    • First observedget_sample_status
    • First observedget_video_sample

Related MCP Connectors

Related MCP Servers

  • A
    license
    Not graded
    quality
    D
    maintenance
    Generate AI UGC video ads from any product URL in 5 minutes. Realistic AI avatars, natural voiceover, proven ad templates. No actors, no editing, no experience required.
    39 npm
    1
    MIT
  • A
    license
    A
    quality
    B
    maintenance
    Make UGC-style video ads without filming: tell your AI assistant what to say and get a vertical clip of a realistic actor saying it, ready for TikTok, Reels or Shorts. Pick or describe an actor, choose a voice from samples, and see the price before rendering. It also makes faceless videos from a script or a short brief: narration over an opening animated clip and image scenes.
    14
    MIT
Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

Resources