What problem does it solve?
Remove the friction of retrieving content from a provided URL and converting it into readable or structured data for downstream tasks. Users who need HTML, JSON, markdown, or plain text from a specific URL get reliable retrieval with control over authentication, redirects, cookies, and timeouts.
Core Features & Use Cases
- HTML retrieval for parsing and element extraction, suitable for documentation pages and articles.
- JSON API consumption with guidance to pipe responses through jq to filter and reduce token usage.
- Markdown/plain text extraction using a built-in WebFetch tool that renders JavaScript and strips boilerplate while curl is recommended for custom headers, POST bodies, and cookie management.
- Advanced patterns for pagination, retries, response inspection, cookie handling, and saving binary responses to disk.
Quick Start
Fetch the URL https://example.com/article and return the cleaned markdown content, using WebFetch by default and falling back to curl when custom headers or POST bodies are required.