Skip to main content
Glama

Server Details

Publish HTML, Markdown, and multi-file sites as shareable URLs instantly via MCP.

Status
Healthy
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 DescriptionsB

Average 3.8/5 across 4 of 4 tools scored. Lowest: 2.9/5.

Server CoherenceA
Disambiguation5/5

Each tool targets a distinct action: get retrieves metadata, publish creates single-page artifacts, publish_site creates multi-file sites from ZIPs, and versions lists history. No functional overlap.

Naming Consistency5/5

Naming follows a consistent verb or verb_noun pattern (get, publish, publish_site, versions). The use of 'versions' as a noun for a verb-like action is acceptable and maintains consistency.

Tool Count5/5

Four tools is well-scoped for a simple artifact publishing server. Each tool serves a clear purpose without redundancy.

Completeness3/5

Covers core operations (create via publish/publish_site, read via get/versions) but lacks an update or delete tool, and there is no way to list all artifacts. These gaps could hinder workflows requiring full lifecycle management.

Available Tools

4 tools
getAInspect

Get artifact metadata. Set include_content to true to also return the full HTML content.

ParametersJSON Schema
NameRequiredDescriptionDefault
idYesArtifact ID or short ID
include_contentNoInclude the full HTML content in the response (default: false)
Behavior3/5

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

With no annotations provided, the description carries the full disclosure burden. It explains that HTML content is optionally returned, but omits safety profile, error handling (e.g., missing ID behavior), idempotency, or rate limiting details.

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?

Both sentences earn their place: the first defines scope (metadata retrieval), the second explains the critical behavioral toggle (include_content). Zero redundancy in 16 words.

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 simple 2-parameter retrieval tool without output schema, the description adequately covers the return values (metadata/HTML). Minor gap in not describing error states or null returns, but sufficient for the complexity level.

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?

While the schema has 100% description coverage (baseline 3), the description adds valuable usage context by explicitly instructing to 'Set include_content to true' for full HTML retrieval, reinforcing the parameter's practical application.

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 retrieves 'artifact metadata' using the specific verb 'Get' and distinguishes itself from siblings 'publish' (mutation) and 'versions' (listing) through its singular retrieval focus.

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 description provides implicit guidance by explaining the include_content flag's effect, but lacks explicit guidance on when to use this tool versus siblings (e.g., when to prefer this over 'versions' for artifact inspection).

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

publishAInspect

Publish HTML or Markdown content as a shareable URL. Pass content byte-for-byte from the source — do not retype, reformat, minify, summarize, or 'clean up' the input; even one stray character can break inline scripts on the published page. If the content is too large to copy verbatim through the model, use the REST endpoint POST /v1/artifacts (or /v1/artifacts/upload for ZIPs) instead. For Markdown, optionally include images as base64-encoded data.

ParametersJSON Schema
NameRequiredDescriptionDefault
titleNoArtifact title (default: Untitled)
formatYesContent format
imagesNoImages referenced in the markdown content. Only used when format is 'markdown'.
contentYesThe HTML or Markdown content to publish. Copy this verbatim from the source file or buffer — do not modify, reformat, or regenerate it. Whitespace, emojis, comments, and exact character sequences inside <script> and <style> blocks all matter. If you cannot fit the full content unmodified in one tool call, fall back to POST /v1/artifacts via curl.
visibilityNoVisibility (default: unlisted)
Behavior4/5

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

With no annotations, the description fully discloses the critical behavior: content must be passed byte-for-byte without modification, and even one stray character can break scripts. It also explains the implication of large content and the alternative endpoint. This is high transparency for a mutation tool.

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 concise with four sentences, each adding value: purpose, critical usage rule, fallback for large content, and image handling for markdown. It front-loads the core action and is free of redundancy.

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 (5 params, 2 required, no output schema), the description covers purpose, behavioral constraints, usage alternatives, and parameter context. It is complete for an agent to correctly invoke the tool, especially with the schema providing full parameter descriptions.

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?

Schema coverage is 100%, so the baseline is 3. The description adds contextual warnings about the content parameter (verbatim, breakage risk) and mentions base64 images for markdown, but these are already partly covered in the schema description. It does not add new parameter meanings beyond what the schema provides.

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?

The description clearly states that the tool publishes HTML or Markdown as a shareable URL. It distinguishes the tool from the sibling 'publish_site' by focusing on direct content posting, though it does not explicitly differentiate. The verb 'publish' and resource 'content as URL' are specific and clear.

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

Usage Guidelines4/5

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

The description provides explicit guidance on when to use this tool (for verbatim content copying) and when to use the REST endpoint for large content. It also warns against modifying the input. However, it does not compare to other siblings like 'get' or 'versions', which limits full context.

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

publish_siteAInspect

Publish a multi-file HTML site from a base64-encoded ZIP file. The ZIP must contain an index.html at its root. For sites larger than ~10MB — or whenever you have the file on disk — prefer the REST API /v1/artifacts/upload endpoint to avoid base64 overhead and to guarantee byte-faithful upload.

ParametersJSON Schema
NameRequiredDescriptionDefault
titleNoSite title (default: Untitled)
visibilityNoVisibility (default: unlisted)
zip_base64YesBase64-encoded ZIP file containing the site files
Behavior3/5

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

Discloses key behavior: accepts base64-encoded ZIP, requires index.html at root. Mentions size threshold for alternative. However, no annotations exist, and the description omits important details like whether this creates or updates a site, what the return value is, authentication needs, or side effects. Partial but not comprehensive.

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 sentences, front-loaded with the core action. First sentence defines purpose, second gives alternative. No wasted words; every sentence adds value. Highly concise.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Covers purpose, key constraint, and usage alternative. But with no output schema and no annotations, the description lacks return value behavior, error conditions, and whether the tool is idempotent or destructive. For a 3-parameter tool, it is moderately complete but could expand on behavioral details.

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. The description adds value by specifying the constraint that the ZIP must contain an index.html at its root, which is not in the schema. This extra semantic clarity warrants a 4.

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 it publishes a multi-file HTML site from a base64-encoded ZIP. Verb 'publish' and resource 'multi-file HTML site' are specific. Distinguishes from siblings like 'get' and 'versions' via the unique ZIP/base64 mechanism; even sibling 'publish' likely refers to a different kind of publish.

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 provides an alternative: for large sites (>10MB) or disk-based files, prefer the REST API /v1/artifacts/upload endpoint. This gives clear when-to-use and when-not-to-use guidance, addressing both size and convenience.

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

versionsCInspect

List version history of an artifact

ParametersJSON Schema
NameRequiredDescriptionDefault
idYesArtifact ID
Behavior2/5

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

With no annotations, description fails to disclose read-only nature, pagination behavior, or what version metadata is returned.

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?

Extremely concise (5 words) and front-loaded; every word earns its place though brevity sacrifices behavioral details.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Adequate for simple single-parameter tool but lacks output specification critical given no output_schema exists.

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?

Schema has 100% description coverage ('Artifact ID'), establishing baseline; description adds no parameter context beyond schema.

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?

Clear verb 'List' and resource 'version history' distinctly separates it from sibling 'get' (retrieve) and 'publish' (create), though 'artifact' lacks domain specificity.

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

Usage Guidelines2/5

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

No guidance on when to use versus alternatives (e.g., whether to use 'get' instead for current version only) or exclusion criteria.

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