Skip to main content
Glama

Server Details

Publish the website you built with AI to a live public URL — straight from chat, no setup.

Status
Unhealthy
Last Tested
Transport
Streamable HTTP
URL

Glama MCP Gateway

Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.

MCP client
Glama
MCP server

Full call logging

Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.

Tool access control

Enable or disable individual tools per connector, so you decide what your agents can and cannot do.

Managed credentials

Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.

Usage analytics

See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.

100% free. Your data is private.
Tool DescriptionsA

Average 4.5/5 across 3 of 3 tools scored.

Server CoherenceA
Disambiguation5/5

Each tool has a clearly distinct purpose: deploy for publishing/replacing the entire site, get_site_files for reading current files, and update_site_file for targeted edits. No overlap or ambiguity.

Naming Consistency4/5

Tools use snake_case with verb-first naming: deploy, get_site_files, update_site_file. All except 'deploy' follow verb_noun pattern, but the pattern is still clear and predictable.

Tool Count4/5

Three tools is minimal but appropriate for the focused domain of static site publishing. Covers core workflows without unnecessary bloat.

Completeness4/5

The set covers publish, read, and update operations. Lacks an explicit delete tool, but deploy (which replaces the whole site) can delete files by omission. Minor gaps in listing or managing multiple sites.

Available Tools

3 tools
deployAInspect

Put a website live at a public URL. Use this when the user wants to publish, launch, or get a page online — e.g. 'I need a website', 'put up a page for my business', 'make this live'. Takes static files (HTML, CSS, JS, images) and returns a working URL anyone can open. No build step, no config. First call: omit site_id and edit_token — you get back a url, a site_id, and an edit_token. Keep the edit_token; it's the only way to change this site later. Later calls: pass site_id + edit_token to publish over the same site. deploy REPLACES the whole site — any file you leave out is DELETED. To change just one or a few files, use update_site_file instead. To see what's currently live before editing, use get_site_files first.

ParametersJSON Schema
NameRequiredDescriptionDefault
emailYesEmail to associate with the site. Captured unverified at first deploy; verification only required later for custom domains and recovery.
filesYesFiles to publish. Must include an index.html at the root.
site_idNoExisting site id to update. Omit to create a new site.
edit_tokenNoEdit token returned at create time. Required to update.

Output Schema

ParametersJSON Schema
NameRequiredDescription
urlYesThe live URL of the published site.
createdYestrue if this call created a new site; false if it updated an existing one.
site_idYesThe site's slug / id — pass back to update it later.
edit_tokenNoReturned ONLY on first create. Save it — it's the only way to update this site.
total_bytesYesTotal size of the site in bytes after this deploy.
email_maskedYesThe owner email, masked for display (e.g. 'a***@example.com').
dashboard_urlYesDeep link to this site in the owner's dashboard.
email_verifiedYesWhether the site's owner email is verified right now. New sites are always false.
files_uploadedYesNumber of files written in this deploy.
verify_requiredYestrue when the owner still needs to verify their email (keys on !email_verified).
Behavior1/5

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

The description states 'deploy REPLACES the whole site — any file you leave out is DELETED,' which is a destructive action. However, the annotations set destructiveHint=false, contradicting this behavioral information. This contradiction undermines transparency.

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 well-structured and front-loaded with the main purpose. It is informative but somewhat lengthy; could be slightly more concise without losing key details. Every sentence provides value, but brevity could be improved.

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?

Given the tool's complexity (destructive replacement, two-phase workflow, required index.html, sibling tools), the description covers all essential aspects: workflow, file handling, alternatives, and warnings. It is comprehensive and avoids gaps.

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?

The description adds significant meaning beyond the input schema: explains the purpose of email (unverified at first, required later for custom domains), the necessity of an index.html in files, and the usage pattern for site_id and edit_token (omit on first call, include on later). Schema coverage is 100% but description enriches 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 clearly states the tool's purpose: 'Put a website live at a public URL.' It uses a specific verb ('put live') and resource ('website'), and distinguishes from siblings by naming update_site_file and get_site_files as alternatives for partial changes or inspection.

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 states when to use ('when the user wants to publish, launch, or get a page online') and when not to use ('To change just one or a few files, use update_site_file instead; to see what's live, use get_site_files first'). Provides clear workflow for first vs. later calls.

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

get_site_filesA
Read-only
Inspect

Read the files of a site you already published, so you can make a targeted edit instead of rebuilding the whole site from memory. Returns a complete manifest (every file's path, size, content-type, sha256) plus the contents of the text files (HTML/CSS/JS/etc). Also returns the site's current version — pass it back to update_site_file so you don't overwrite a newer change. Pass paths to fetch only specific files; omit it to get all text files. Requires site_id + edit_token.

ParametersJSON Schema
NameRequiredDescriptionDefault
pathsNoOptional. Specific file paths to return contents for (e.g. ['index.html','style.css']). Omit to get all text files. The manifest always lists every file regardless.
site_idYesThe site id returned at publish time.
edit_tokenYesThe edit token returned at publish time.

Output Schema

ParametersJSON Schema
NameRequiredDescription
urlYesThe live URL of the site.
filesYesInlined contents of the requested text files (default: all text files, capped for size).
site_idYesThe site's slug / id.
versionYesThe site's current version — pass as expected_version to update_site_file to avoid clobbering.
manifestYesEvery file on the site (always complete, regardless of which contents were inlined).
truncatedYestrue if some requested file contents were omitted for size — request specific paths to read them.
Behavior5/5

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

Discloses return contents (manifest with file details, text file contents, version), behavior of paths parameter (manifest always lists all files), and is consistent with annotations (readOnlyHint=true, destructiveHint=false). No contradiction.

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?

Well-structured with front-loaded purpose, followed by return details and parameter usage. Each sentence adds value, though slightly verbose with some repetition (e.g., 'make a targeted edit' and 'instead of rebuilding'). Still efficient.

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?

Complete coverage of purpose, return values, version usage, parameter options, and requirements. Output schema likely details return structure, so description complements it fully.

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%, but description adds meaning: explains use of version to prevent overwrites, clarifies that omitting paths fetches all text files, and that manifest always lists all files. Adds significant value beyond 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 description clearly states 'Read the files of a site you already published' with a specific verb and resource, and explains the purpose of making targeted edits, distinguishing from siblings like update_site_file and deploy.

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 states when to use (targeted edit), how to use (pass version to update_site_file to avoid overwrites), parameter guidance (paths to fetch specific files), and requirements (site_id + edit_token).

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

update_site_fileAInspect

Change one or a few files of an already-published site, leaving every other file untouched (a merge — unlike deploy, which replaces the whole site). Ideal for small edits: fix a typo in index.html, swap a stylesheet, add one page. Best practice: call get_site_files first, edit the returned content, then call this with the files you changed and the expected_version from that read — if the site changed in the meantime you get a clear conflict telling you to re-read. Requires site_id + edit_token. Cannot delete files (use deploy to drop a file) and cannot remove index.html.

ParametersJSON Schema
NameRequiredDescriptionDefault
filesYesThe files to change. Only these are written; all other files on the site survive.
site_idYesThe site id returned at publish time.
edit_tokenYesThe edit token returned at publish time.
expected_versionNoOptional but recommended. The `version` you got from get_site_files. If the site has changed since, the update is rejected with a conflict so you can re-read and re-apply. Omit to force last-writer-wins.

Output Schema

ParametersJSON Schema
NameRequiredDescription
urlYesThe live URL of the site.
site_idYesThe site's slug / id.
versionYesThe site's new version after the merge.
files_totalYesTotal number of files on the site after the merge.
files_writtenYesPaths of the files written in this update. All other files were left untouched.
Behavior4/5

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

Annotations indicate this is a non-destructive mutation. Description adds significant context: merge behavior, conflict handling with expected_version, requirement of site_id and edit_token, and that it cannot delete files. Does not contradict 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?

Concise, each sentence adds distinct value. Purpose, guidelines, best practice, requirements, and limitations are each addressed in efficient, front-loaded sentences.

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 tool with 4 parameters and a comprehensive schema, the description covers core behavior, usage guidelines, best practices, and limitations. Output schema is present, so return values need no explanation. No obvious gaps.

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 covers all parameters. Description reinforces purpose of expected_version for optimistic concurrency and explains that only specified files are written. Adds workflow context beyond schema but does not introduce new parameter semantics.

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?

Clearly states the tool changes specific files of a published site, contrasting with deploy which replaces the entire site. The verb 'change' and resource 'files of a site' are specific, and the description distinguishes from sibling tool deploy.

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 advises when to use this tool (small edits) and when to use deploy (to delete files). Recommends preceding with get_site_files to avoid conflicts. Also states limitations (cannot delete files, cannot remove index.html).

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

Discussions

No comments yet. Be the first to start the discussion!

Try in Browser

Your Connectors

Sign in to create a connector for this server.

Resources