Skip to main content
Glama
cmssy-io

@cmssy/mcp-server

Official
by cmssy-io

unpublish_page

Unpublish a published page by toggling its published state off. Use after user confirmation to make a page unavailable to visitors.

Instructions

Unpublish a published page (toggles its published state off). Only call after the user confirms.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pageIdNoPage id to unpublish

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.73.1

TDQS

A4/5.0
Behavior3/5

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

With no annotations, the description carries the burden of disclosing behavior; it does state that the tool mutates the page's published state. However, it does not address edge cases such as calling it on an already-unpublished page, or describe response/error behavior.

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 with no filler. The main action is front-loaded and the safety condition occupies a clearly separate sentence, making the definition 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 simple one-parameter mutation, the description gives the core action, the condition for calling it, and the required ID. It is slightly incomplete in not describing the expected response or behavior when the page is not published, but those are minor for this low-complexity tool.

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% and the pageId parameter is already documented in the schema. The tool description adds no extra meaning about the parameter, so it merits the baseline score for good 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 opens with a specific action and resource — 'Unpublish a published page' — and clarifies the precise effect by saying it toggles the published state off. This distinguishes it from related siblings like publish_page without needing to open the schema.

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 provides a clear invocation condition: only call after the user confirms. It does not explicitly contrast this with alternatives such as publish_page, delete_page, or revert_to_published, so it stops short of full when-not/alternative guidance.

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