Skip to main content
Glama
arunai30

@share-html/mcp-server

by arunai30

Get page details

get_page
Read-only

Retrieve the current status, version, and shareable URL of a published HTML page by page ID to verify availability and access its link.

Instructions

Get the current status, version, and URL for one page.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pageIdYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.0

TDQS

B3.2/5.0
Behavior3/5

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

The readOnlyHint annotation already establishes this is a safe read, so the description only needs to add context. It does usefully enumerate what comes back (status, version, URL), but says nothing about behavior for a missing/invalid pageId or any auth requirements.

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?

A single front-loaded sentence with zero filler that names the resource and the returned fields immediately.

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 single-parameter read tool with readOnlyHint coverage and no output schema, stating the returned fields is largely sufficient. Only error/nonexistent-page behavior and pageId provenance are left unaddressed.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

There is exactly one parameter, pageId, with 0% schema description coverage, so the description carries the full burden of explaining it. 'One page' only restates that a page is targeted and gives no hint about the id's format, source, or validity.

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?

States a specific verb ('Get') and resource ('one page') plus the exact fields returned (status, version, URL). The 'one page' phrasing implicitly separates it from the list_pages sibling, though it does not name alternatives outright.

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?

There is no explicit when-to-use guidance, no prerequisites, and no mention of alternatives such as list_pages or get_page_sharing. An agent must infer from the name and the word 'one page' that this is the single-item lookup.

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