Skip to main content
Glama

Read a page (anew.page URL → its HTML source)

anew_read

Pass an anew.page URL, get back the HTML document encoded in it, plus its canonical URL and byte size. (Two in-page tools share this name and take no arguments: the editor's reads the document open in the editor, and a rendered page's reads the page being viewed. This one takes a url and reads that page.) To revise an existing anew page, its URL is its source: read it, edit that HTML, write it again. The new URL is a separate page and the original keeps working. Read returns the author's exact bytes — no anew-injected tags, no proxied image srcs — so it re-encodes byte-for-byte. Never re-author from a rendered page, a scraped DOM, or a screenshot: each loses the author's markup, and none is faster than reading the slug. Decoding is local and exact, so any anew URL reads — the page needs no prior visit and no fetch.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
urlYesAn anew.page URL, or a bare slug. Subdomain, cosmetic-prefix and #hash forms all resolve.
formatNoHow the document rides back. "text" (default) is one plain text block. "resource" is one embedded-resource block ({type:"resource"}, mimeType text/html) — the typed MCP form for callers that want the page tagged as HTML rather than loose text. Same bytes both ways.text

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
urlYesCanonical anew.page URL for this document.
bytesYesEncoded URL length in bytes.
limitYesUnfurl-safe URL threshold (4000); headroom = limit - bytes. Past it the URL still works (hard ceiling 65000), it may just break in some apps.

TDQS

A4.7/5.0
Behavior4/5

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

The annotations are all false, so the description carries the burden of explaining behavior. It does so well: it reveals that read returns exact bytes with no injected tags or proxied image srcs, that decoding is local and exact, and that any URL can be read without prior visit or fetch. It doesn't discuss rate limits or error cases, but it goes beyond typical descriptions.

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 longer than average, but every sentence earns its place. The most important fact — what the tool returns — is front-loaded, and the caveats (exact bytes, local decoding, never re-author from rendered pages) all prevent real mistakes. No filler or repetition of schema 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 read tool with a rich input schema and output schema, this description is complete. It covers the tool's purpose, main constraints, when to use it, when not to, and the critical byte-for-byte guarantee. The output schema already documents the return shape, so the description doesn't need to explain it.

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 coverage is 100%, so the baseline is 3. The description adds meaningful context for the url parameter ('or a bare slug', 'subdomain, cosmetic-prefix and #hash forms all resolve') and clarifies the format parameter's semantic difference ('same bytes both ways'), which is exactly what an agent needs to choose correctly.

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 a specific action ('Pass an anew.page URL, get back the HTML document encoded in it') and names the resource and the exact output fields. It also disambiguates this tool from the two in-page tools that share the name, which is critical given the ambiguity.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

It explicitly says when to use this tool — to read or revise an existing page — and when not to: 'Never re-author from a rendered page, a scraped DOM, or a screenshot'. It also distinguishes the sibling anew_write by explaining that the URL is the source and editing requires read-then-write. This is strong guidance.

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

The server exposes exactly two operations with fully distinct roles: one decodes an anew URL into HTML, the other encodes HTML into an anew URL. There is no overlap or boundary ambiguity between read and write.

Naming Consistency5/5

Both tool names follow the identical anew_<verb> pattern: anew_read and anew_write. The naming convention is perfectly consistent and immediately signals each tool's action.

Tool Count5/5

The server's domain is a narrow encode/decode utility, and two tools fully cover it; each tool is essential and earns its place. The count is appropriate even though it is below the typical 3-15 range because the scope is intentionally minimal.

Completeness5/5

The read/write pair covers the full lifecycle of this URL-encoded page format, including the documented read-edit-write revision workflow. No obvious operations are missing: URLs are immutable by design, so delete is not applicable and no listing/search is needed for self-contained URLs.

Resources