Skip to main content
Glama

publish

Publish content as a clean, shareable public web page and get back a URL you can give to a human. Use this whenever you produce a report, plan, summary, analysis, doc, or any artifact the user should read or share — instead of dumping a wall of text into chat. Content is Markdown by default.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
titleNoPage title.
formatNoContent format. Default markdown.
contentYesPage body in Markdown (headings, lists, code blocks, links, bold/italic supported).

TDQS

A4.2/5.0
Behavior4/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It reveals that the tool creates a shareable public web page and returns a URL, and mentions the default Markdown format. It does not discuss side effects like perm uniqueness or reversibility, but the core behavior is clearly stated and consistent with expectations for a publish action.

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 concise sentences, front-loaded with the core action and result. The second sentence provides clear usage guidance without redundancy. Every phrase earns its place, making it efficient and easy to parse.

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 tool with 3 parameters and no output schema, the description gives sufficient context: what it does, when to use it, the return value (URL), and the default format. It does not mention error cases or relationships to sibling tools, but for the agent's selection and invocation needs, the information is largely complete.

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. The description adds minimal additional parameter meaning—it only restates that content is Markdown by default, which is already in the schema's format description. No extra semantics for title or content are provided 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 clearly states the tool's purpose: 'Publish content as a clean, shareable public web page and get back a URL you can give to a human.' It specifies a concrete action (publish), the resource (public web page), and the outcome (URL). This distinguishes it from sibling tools like list_pages, unpublish, and update_page.

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 the tool: 'Use this whenever you produce a report, plan, summary, analysis, doc, or any artifact the user should read or share — instead of dumping a wall of text into chat.' It clearly defines the intended use case but does not explicitly mention when not to use it or name alternatives (e.g., update_page for editing existing pages).

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/5.0
Disambiguation5/5

Each tool maps to a distinct lifecycle action: list (read), publish (create), unpublish (delete), and update (edit). There is no functional overlap, and an agent can easily select the correct tool based on the intended operation.

Naming Consistency4/5

The tools mostly follow a verb_noun pattern (list_pages, update_page) with two concise verbs (publish, unpublish) that are clear and stylistically consistent. The slight deviation from including a noun in every name is minor and does not hinder predictability.

Tool Count5/5

Four tools is a compact, focused set for a simple page publishing service. Each tool serves a necessary function without redundancy, making the surface area easy to navigate.

Completeness5/5

The toolkit provides full CRUD coverage for published pages: create via publish, read via list_pages, update via update_page, and delete via unpublish. No obvious gaps exist for the stated domain of managing public web pages.

Resources