Web Fetch
JSON →Fetches and converts web content, ideal for data extraction and web scraping.
Install
npx -y mcp-server-fetch-typescript Tools · 4
- get_raw_text Retrieve raw text content directly from URLs. Takes `url` as a required parameter pointing to text-based resources. Returns unprocessed text content without browser rendering. Ideal for JSON, XML, CSV, TSV, or plain text files. Best used when fast, direct access to source content is needed.
- get_rendered_html Fetch fully rendered HTML content. Takes `url` as a required parameter. Returns complete HTML content after JavaScript execution. Uses Playwright for headless browser rendering. Essential for modern web applications and SPAs.
- get_markdown Convert web content to Markdown format. Takes `url` as a required parameter. Returns well-formatted Markdown preserving structural elements. Supports tables and definition lists. Recommended for content archiving and documentation.
- get_markdown_summary Extract and convert main content. Takes `url` as a required parameter. Returns clean Markdown focusing on main content. Automatically removes navigation, headers, footers. Perfect for article and blog post extraction.
Links
★ 4 GitHub stars