Skip to main content
Glama

Publier une app

publish_app

Met en ligne une app HTML mono-fichier et renvoie son URL publique. Appelez cet outil quand l'utilisateur veut héberger, publier, mettre en ligne ou partager une app HTML que vous venez de créer. Aucun compte n'est nécessaire. IMPORTANT : si l'app conserve des données que l'utilisateur s'attendra à retrouver plus tard (todo, notes, compteur, scores, favoris…), câblez-la sur GET/PUT /api/data AVANT de publier — localStorage seul ne survit pas au changement d'appareil. Voir get_publishing_guide. CONFIDENTIALITÉ : l'app publiée est accessible à quiconque a son adresse, mais elle PEUT être verrouillée (page et données réservées au compte de l'utilisateur, après lien envoyé par email). Cet outil renvoie le lien qui rattache et verrouille en un clic : proposez-le à l'utilisateur juste après la publication dès que l'app enregistre des données personnelles.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
dataNoDonnées initiales de l'app, en JSON sérialisé (ex. '{"todos":[]}'). N'écrase jamais des données existantes — utilisez set_app_data pour cela.
htmlYesLe fichier HTML complet de l'app (CSS et JS inclus dedans). Maximum 2 Mo.
slugNoBase du sous-domaine souhaitée (3–40 caractères : minuscules, chiffres, tirets), sinon dérivée du titre. Un suffixe aléatoire lui est TOUJOURS ajouté : l'adresse finale diffère du slug demandé. Utilisez l'URL renvoyée par cet outil, ne la reconstruisez jamais vous-même.
titleNoTitre lisible de l'app.

TDQS

A4.3/5.0
Behavior4/5

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

No annotations are provided, so the description carries the full burden, and it does well by disclosing that no account is needed, the published app is publicly accessible, it can be locked to the user's account, and localStorage alone won't survive device changes. It lacks some details like response format or failure behavior, but the core operational traits are clearly exposed.

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 first sentence delivers the core action and result, followed by clearly separated usage, persistence, and confidentiality guidance. Each labeled section earns its place with actionable information, and there is no redundant or filler content.

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 publish tool with no output schema and no annotations, the description is highly complete: it covers when to use the tool, the no-account requirement, the public visibility and locking option, and the critical data-persistence caveat. Together with the fully documented input schema, this gives the agent everything needed to invoke the tool correctly.

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 description coverage is 100%, so the baseline is 3 even without additional parameter details. The description adds useful context about data persistence and personal-data handling, but it does not meaningfully enhance per-parameter semantics beyond what the schema already documents.

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 states precisely that the tool publishes a single-file HTML app and returns its public URL. It also distinguishes itself from siblings by framing this as the action for hosting/publishing/sharing a newly created app, rather than claiming, updating, deleting, or managing data.

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 explicitly says to call the tool when the user wants to host, publish, put online, or share an HTML app, and it points to get_publishing_guide for additional guidance. It also gives a strong directive about wiring persistence before publishing, but it does not explicitly say when not to use it, such as for updating an existing app.

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

A4.4/5.0
Disambiguation5/5

Each tool targets a clearly distinct resource and action: app metadata, app data, publishing, claiming, listing, deletion, and the guide. get_app and get_app_data are separated by metadata vs user JSON, and update_app vs set_app_data are separated by HTML/title vs stored data.

Naming Consistency5/5

All tool names follow the same verb_noun pattern in snake_case: claim_app, delete_app, get_app, get_app_data, get_publishing_guide, list_my_apps, publish_app, set_app_data, update_app. The convention is perfectly consistent.

Tool Count5/5

Nine tools is well-scoped for the domain of publishing and managing single-file HTML apps with data persistence. Each tool serves a distinct lifecycle stage or data operation, with none feeling redundant or extraneous.

Completeness5/5

The set covers the full lifecycle: publish, read metadata, update, delete, claim, and list; plus data operations (get/set app data) and an explicit guide for the tricky data-evolution pattern. No obvious missing operation blocks the intended workflows.

Resources