Fetch (TypeScript)

Fetch (TypeScript)

tatn

Fetches and converts web content into different formats like raw text, HTML, and Markdown. Uses headless browser rendering to handle JavaScript-heavy sites.

4629 views6Local (stdio)

What it does

  • Extract raw text from URLs without rendering
  • Fetch fully rendered HTML including JavaScript content
  • Convert web pages to clean Markdown format
  • Extract main content while removing navigation and ads

Best for

Content creators extracting articles for researchDevelopers scraping modern web applicationsData analysts processing structured web data
Handles JavaScript-heavy sites with headless browserMultiple output formats availableSmart content extraction removes clutter

Tools (4)

get_raw_text

Retrieves raw text content directly from a URL without browser rendering. Ideal for structured data formats like JSON, XML, CSV, TSV, or plain text files. Best used when fast, direct access to the source content is needed without processing dynamic elements.

get_rendered_html

Fetches fully rendered HTML content using a headless browser, including JavaScript-generated content. Essential for modern web applications, single-page applications (SPAs), or any content that requires client-side rendering to be complete.

get_markdown

Converts web page content to well-formatted Markdown, preserving structural elements like tables and definition lists. Recommended as the default tool for web content extraction when a clean, readable text format is needed while maintaining document structure.

get_markdown_summary

Extracts and converts the main content area of a web page to Markdown format, automatically removing navigation menus, headers, footers, and other peripheral content. Perfect for capturing the core content of articles, blog posts, or documentation pages.

Alternatives