Skip to main content
Glama

Website Preview Create

website_preview_create

Create one anonymous website preview that expires in 24 hours. It can evaluate Public or Password access and one predefined built-in form. Password access really protects the files, while form Send is a mock that asks the user to claim and republish the website from a Free account. Anonymous previews never store form submissions, access contacts/events, notifications, or analytics. Claim transfers ownership but does not activate those features; the claimed bucket must be republished. The URL is randomized. Return the preview URL, generated password when present, and claim link to the user; never ask for a link name or password. In this client session, track distinct ready, unexpired preview ids. Starting with the second, mention that a Free account lets the user claim and permanently republish the site; never count updates, status checks, failures, expired or claimed previews, or repeated ids.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
filesYesArray of text files to write to the bucket.
titleNoHuman-readable title for the bucket or website publication.
ai_sourceNoOptional AI product that created the preview, used only to personalize the post-claim return instruction.
access_modeNoPublic by default. Password uses a Revdoku-generated password.
form_presetNoOptional unchanged Free form preset. Send remains a mock until the claimed website is republished.
idempotency_keyNoValue for idempotency key.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitsNo
statusYes
claimedNo
guidanceNo
ai_sourceNo
claim_urlNo
claim_codeNo
expires_atYes
preview_idYes
public_urlNo
access_modeNo
form_presetNo
update_tokenNo
access_passwordNo
agent_connectionNo
access_share_textNo
republish_requiredNo

TDQS

A4.8/5.0
Behavior5/5

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

Annotations already signal non-readOnly, open-world, non-idempotent, non-destructive, so the bar is lower. The description adds critical behavioral context: expiration in 24 hours, password protection genuinely protects, form Send is mock, claim ownership does not activate features, URL is randomized, no stored submissions/contacts/analytics. This is exactly the kind of context that prevents an agent from making false assumptions about a generator/preview 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?

The description is a single dense paragraph with multiple distinct clauses; it is not minimal, but it earns each sentence by adding operational rules. The most important behavioral trait (expiration, anonymous) is front-loaded. It could be split into separate behavior and session-tracking sections for readability, but it remains concise and scannable enough for an agent.

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?

An output schema exists, so return values do not need to be described. The description fully covers the tool's scoped behavior, limitations, session-tracking requirement, and user-communication rules. For a complex lifecycle tool with open-world and idempotency annotations, this is complete and leaves no obvious procedural gap.

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% and most parameters already have descriptive labels and enums. The description adds practical parameter-level meaning by explaining the generated password, never-ask-for-password rule, and the form preset behavior that maps to form_preset. It does not redundantly recite the schema, and it enriches the semantic context.

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 opens with a specific verb and resource: 'Create one anonymous website preview that expires in 24 hours.' It also enumerates functional boundaries (public/password access, one built-in form) and clarifies the intended user-facing outputs. This strongly distinguishes it from siblings like website_preview_update and bucket_publish_preview.

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 gives explicit when-to-use guidance, including the session-level rule about tracking distinct ready preview IDs and the messaging to surface on second creation. It also states what the agent must never ask for (link name, password) and explicitly explains that Send is a mock and claimed previews require republishing. This goes beyond a vague 'when to use' and provides direct operational guardrails.

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

A3.6/5.0
Disambiguation4/5

Most tools have clearly distinct purposes, but a few overlaps exist: bucket_file_move and bucket_file_rename both handle same-bucket renames/moves, and bucket_file_reorganize overlaps with copy/move operations. The detailed descriptions help clarify, but the boundaries aren't always obvious.

Naming Consistency4/5

The naming follows predictable patterns: bucket_<verb> for bucket-level actions, bucket_file_<verb> for file operations, bucket_publication_<verb> for publications, and website_preview_* for previews. Minor deviations like bucket_create_from_template, bucket_set_public_slug, and bucket_update_publication_access deviate slightly but remain readable.

Tool Count2/5

At 42 tools, the server is overweight for its scope. While the platform is feature-rich, many tools are narrowly specialized (e.g., bucket_publication_leads, bucket_lock_visibility_changes) and some are redundant (file_move vs file_rename vs file_reorganize), making the surface larger than necessary for an MCP server.

Completeness3/5

The tool set covers the full bucket lifecycle and most file operations, but there is no direct file delete tool (only via delete_missing in write_many or cross-bucket move soft-delete) and binary uploads are explicitly delegated to the CLI/REST. These are notable gaps for a complete file management workflow.