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
| Name | Required | Description | Default |
|---|---|---|---|
| css | No | Additional CSS to override styles. | |
| url | Yes | The URL of the web page to read as Markdown. | |
| wait | No | Seconds to wait between processing URLs (sequential mode). | |
| debug | No | Print detailed debug info. | |
| style | No | Path to a custom CSS stylesheet. | |
| title | No | Title for the document. | |
| author | No | Author for the document. | |
| no_amp | No | Don't prefer the AMP version of the page. | |
| template | No | Path to a custom HTML template (nunjucks). | |
| hyphenate | No | Enable hyphenation. |