Skip to main content
Glama

Server Details

Publish what your agent just made to a public HTTPS link. Pass the content — a page, a report, a deck — and get a live URL that keeps working with no machine online, plus password protection, credential rotation and takedown. 8 tools. The local companion (npm i -g @servelink/serve) adds tunnels to a running dev server.

Ownership verified
Status
Healthy
OAuth
Not checked
Last Tested
Transport
Streamable HTTP
URL

Available Tools

8 tools
account_statusA
Read-onlyDestructive
Inspect

Return the account's plan, entitlement, live tunnels, and owned links, plus storage/transfer/publish usage. Owned links are unlimited by count.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A3.6/5.0
Behavior1/5

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

The description describes a pure read/retrieval action ('Return the account's ...'), but the annotations set destructiveHint=true, which directly contradicts that read-only nature. This is a serious inconsistency that could lead an agent to believe calling it has destructive side effects.

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 two short sentences; the first front-loads the purpose and contents, and the second adds a useful clarifying detail about owned-link count limits. No words are wasted.

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 zero-parameter status tool, the description covers the main response categories but no output schema is provided, so the exact response shape is unverified. The contradictory destructiveHint in annotations also slightly undermines completeness, though the description itself is clear.

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?

There are no parameters in the schema and no required fields, so there is nothing for the description to clarify. Baseline 4 applies because parameter semantics are moot.

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 begins with the specific verb 'Return' and enumerates exactly what is provided: the account's plan, entitlement, live tunnels, owned links, and usage metrics. This clearly positions it as the read-only status tool among siblings like revoke_link and unprotect_link, which are mutation actions.

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 gives no explicit when-to-use or alternative guidance, leaving the agent to infer that this is the generic account overview. Even though the 0-parameter signature makes it trivially callable, there is no statement distinguishing it from sibling tools like links or serve for account-related queries.

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

serveA
DestructiveIdempotent
Inspect

Publish inline content to a public HTTPS URL that serves from the cloud. Pass content (text) or content_base64 (binary), plus filename. Set name to request a specific link. The link stays live with no machine online until stop_remote is called.

ParametersJSON Schema
NameRequiredDescriptionDefault
ttlNoOptional protection TTL (e.g. 24h, 7d).
nameNoOptional requested subdomain; a fresh generated link is used if omitted.
contentNoText content of the file to publish.
protectNoIf true, enables capability token + secret code protection on the link.
replaceNotrue replaces an existing published artifact at the requested name (Pro); false returns a residency_conflict error
filenameNoFilename / entry name for the artifact (e.g. index.html, deck.html). Defaults to index.html.
content_base64NoBase64-encoded binary content of the file to publish (use instead of content for binaries).

TDQS

A4.4/5.0
Behavior4/5

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

Annotations already signal readOnly=false, idempotent=true, and destructive=true, so the safety profile is structured. The description adds genuinely useful behavioral context: the published link remains live in the cloud with no machine online until stop_remote is called. It does not detail destructive replacement semantics, but the replace parameter describes that and the annotation already flags destructiveness.

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?

Three tight sentences with no filler. The purpose is front-loaded, the parameter usage is condensed into one instructive sentence, and the lifecycle caveat is placed at the end where it reinforces why this tool exists relative to stop_remote.

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 creation tool with 7 self-documenting parameters and a rich annotation block, the description covers the essential behavioral context: public URL, cloud hosting, content variants, optional naming, and persistence until stop_remote is called. The lack of an output schema means return details are not explicitly stated, but the public URL and link concept make the primary return value clear enough.

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 description coverage is 100%, so the baseline is 3. The description adds relational meaning by explaining that content is for text, content_base64 is for binary, and filename accompanies the content; it also notes that name controls the requested subdomain. This goes slightly beyond raw schema fields, though it does not explain defaults or the ttl/protect interaction.

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 clear verb and resource: 'Publish inline content to a public HTTPS URL that serves from the cloud.' This immediately distinguishes serve from sibling management tools like stop_remote, renew_link, and protect_link, and makes its role as a creation/deployment tool obvious.

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?

It gives a practical usage pattern: pass content for text or content_base64 for binary, supply a filename, and set name to request a specific link. It also names stop_remote as the counterpart for keeping links alive. It does not explicitly enumerate when to use protect_link, renew_link, or revoke_link, but those are reasonably inferable from sibling names.

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

stop_remoteA
DestructiveIdempotent
Inspect

Unpublish a remote link, deleting its stored bytes immediately and returning the link to local residency.

ParametersJSON Schema
NameRequiredDescriptionDefault
labelYesLabel of the published (remote) link to unpublish.

TDQS

A4/5.0
Behavior4/5

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

Annotations already declare this operation destructive and not read-only. The description adds valuable behavioral detail beyond the annotations: it explicitly states that stored bytes are deleted immediately and that the link returns to local residency. This gives the agent a clearer understanding of side effects.

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 a single, tightly worded sentence that leads with the primary action and then supplies the most important behavioral details. Every word contributes meaning, and there is no redundancy with the annotations or schema.

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 destructive, single-parameter operation, the description provides adequate context: what it does, what it deletes, and what the resulting state is. There is no output schema, so return-value documentation would be nice, but the core decision to invoke the tool and expectation of effect are sufficiently covered.

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 input schema fully documents the single 'label' parameter with a clear description, so the schema carries the burden. The tool description does not add any additional parameter-level semantics, but none are really needed given 100% schema coverage.

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 begins with a specific verb and resource: 'Unpublish a remote link.' It further clarifies the effect ('returning the link to local residency'), which distinguishes this from sibling tools like revoke_link or unprotect_link. The purpose is unambiguous and specific.

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 implies the tool should be used when a remote link should be unpublished and returned to local residency. However, it does not explicitly discuss when to prefer this tool over siblings such as revoke_link or unprotect_link, nor does it provide any exclusion criteria.

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

Frequently Asked Questions

Discussions

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

Related MCP Servers

  • A
    license
    Not graded
    quality
    D
    maintenance
    Enables detection and analysis of pre-public product launches through web search, content extraction, AI-powered scoring, and automated alerting. Provides comprehensive tools for surfacing stealth startup signals before they trend publicly.
    MIT
  • A
    license
    Not graded
    quality
    B
    maintenance
    Browse IndustryLens's published competitive-intelligence reports and head-to-head competitor comparisons from any AI agent — real, source-backed data.
    MIT
  • A
    license
    Not graded
    quality
    C
    maintenance
    Enables AI chat clients to perform market research and competitive intelligence by gathering company overviews, competitor lists, product portfolios, pricing snapshots, and recent news via live Tavily search.
    MIT
Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4/5.0
Disambiguation4/5

The lifecycle tools (serve, stop_remote, protect_link, renew_link, revoke_link, unprotect_link) are clearly distinct. The only ambiguity is between account_status and links, which both report usage, live tunnels, and owned-link counts, though one is an account-level summary and the other a detailed link listing.

Naming Consistency4/5

Most tools follow a clear lowercase verb_noun pattern (protect_link, renew_link, revoke_link, unprotect_link, stop_remote). The main inconsistency is that query tools are nouns (account_status, links) and serve is a bare verb, but the style remains readable and predictable.

Tool Count5/5

Eight tools is well-scoped for a serve-and-link-management server: one publish action, one unpublish action, four protection lifecycle operations, and two query/status tools. Each tool earns its place without bloat.

Completeness5/5

The set covers the full remote-link lifecycle: publish content, stop/unpublish it, list links, check account status, and protect/renew/revoke/unprotect access. No obvious dead ends or critical missing operations for the stated purpose.

Resources