Skip to main content
Glama
ljbred08

percollate-mcp

by ljbred08

percollate_read_md

Fetch any web page and convert it to clean Markdown for direct reading or conversation, caching results locally so repeat requests return instantly.

Instructions

Read a web page as Markdown. Fetches the page, converts to clean Markdown, caches the result locally, and returns the full Markdown content. Subsequent calls for the same URL return the cached version instantly. Ideal for consuming web content directly in conversation.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
cssNoAdditional CSS to override styles.
urlYesThe URL of the web page to read as Markdown.
waitNoSeconds to wait between processing URLs (sequential mode).
debugNoPrint detailed debug info.
styleNoPath to a custom CSS stylesheet.
titleNoTitle for the document.
authorNoAuthor for the document.
no_ampNoDon't prefer the AMP version of the page.
templateNoPath to a custom HTML template (nunjucks).
hyphenateNoEnable hyphenation.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.7

TDQS

A3.7/5.0
Behavior3/5

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

With no annotations, the description carries the full behavioral burden, and it does disclose a genuinely useful trait: results are cached locally and repeat calls for the same URL return instantly. However, it says nothing about failure modes an agent should anticipate - paywalls, auth walls, JS-rendered pages, cache invalidation, timeouts, or rate limiting.

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?

Three tight sentences, front-loaded with the core action, then the mechanics, then the intended use case. No filler or redundancy.

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?

There is no output schema, and the description compensates by stating exactly what is returned ('the full Markdown content') plus the caching lifecycle. For a single-required-param read tool with a fully described schema, an agent has what it needs to invoke it 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 coverage is 100%, so all ten parameters (css, style, template, wait, debug, no_amp, hyphenate, title, author, url) are already documented in the schema. The description adds no parameter-level meaning beyond that, so the baseline of 3 applies.

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+resource ('Read a web page as Markdown') and describes the concrete pipeline: fetch, convert, cache, return content. It implicitly separates itself from the percollate_download_* siblings by emphasizing 'returns the full Markdown content' and in-conversation consumption, but it never names a sibling to make the distinction explicit.

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

Usage Guidelines3/5

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

'Ideal for consuming web content directly in conversation' hints at when to reach for this over the download_* variants, which is implied usage rather than stated guidance. There is no explicit when-to-use/when-not statement, no mention of the alternative download tools, and no prerequisites.

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