Convert HTML to Markdown with Browser Automation
html2md-mcp converts web pages to clean Markdown, cutting HTML size 90-95% while preserving tables and images.
Why it matters
Automate the conversion of HTML web pages into clean, concise Markdown. This asset handles complex, JavaScript-heavy, and authenticated sites using browser automation for comprehensive content extraction and significant size reduction.
Outcomes
What it gets done
Convert HTML content from URLs to Markdown format.
Extract and preserve essential elements like images, tables, and links.
Utilize Playwright for dynamic content on JavaScript-heavy or authenticated pages.
Achieve significant content size reduction (90-95%) by removing extraneous HTML.
Install
Add it to your toolbox
Run in your project directory:
curl -fsSL https://spark.entire.vc/get/vb-html2md-mcp | bash Capabilities
Tools your agent gets
Converts HTML web pages to clean Markdown format with customizable options for images, tables, links, and more.
Overview
html2md-mcp MCP Server
html2md-mcp converts webpages to clean Markdown via the html_to_markdown tool, cutting HTML size by 90-95% while preserving tables, images, and links. Use it when an AI assistant needs to read a webpage, including JavaScript-heavy or authenticated pages, as compact Markdown instead of raw HTML.
What it does
html2md-mcp is an MCP server that converts HTML webpages into clean Markdown, built with trafilatura and BeautifulSoup4 for robust extraction. It strips scripts, styles, navigation, headers, and footers while preserving tables, images, and links, typically reducing HTML size by 90-95%, which makes fetched pages far cheaper to feed into an AI context window.
When to use - and when NOT to
Use it when you want Claude or another MCP client to fetch a webpage and get back clean, compact Markdown instead of raw HTML: reading articles, docs, or dashboards without burning context on markup and boilerplate. For static pages the default fetch method is fast; for JavaScript-heavy single-page apps such as React, Vue, or Angular, or pages behind a login, switch to browser mode, which runs a real Playwright browser (Chromium, Firefox, or WebKit) and can reuse your own browser profile and cookies to reach authenticated pages. Size limits from 1MB to 50MB cap how much content will be downloaded, so it is not meant for arbitrarily large pages without adjusting max_size.
Capabilities
- html_to_markdown: the single MCP tool, converting a URL's HTML into Markdown
- Basic parameters: url (required), include_images, include_tables, include_links, and timeout (5-120 seconds)
- Performance parameters: max_size (1MB-50MB, default 10MB) to cap downloaded content, and optional caching via use_cache and cache_ttl to speed up repeated conversions of the same URL
- Browser mode parameters: fetch_method, either "fetch" for speed or "playwright" for JavaScript and authenticated pages, browser_type (chromium, firefox, or webkit), headless, wait_for (load, domcontentloaded, or networkidle), and use_user_profile to reuse your own browser's cookies, which requires the browser to be closed first
- Stream processing for handling large pages efficiently
How to install
With uv:
git clone <your-repo-url>
cd html2md
uv pip install -e .
playwright install chromium
Or with pip in a virtual environment, followed by the same playwright install chromium step. For production, Docker is recommended:
docker build -t html2md .
Then register it in Claude Desktop's MCP configuration:
{
"mcpServers": {
"html2md": {
"command": "docker",
"args": ["run", "-i", "--rm", "html2md"]
}
}
}
The Docker image ships with Playwright and Chromium preinstalled, runs as a non-root user, and needs no additional setup.
Who it's for
Anyone who wants an AI assistant to read webpages, including JavaScript-heavy apps and pages behind a login, as clean, compact Markdown instead of raw HTML, to keep context usage low and content readable. It is released under the MIT License.
Source README
HTML to Markdown MCP Server
MCP (Model Context Protocol) server for converting HTML webpages to clean Markdown format. Reduces HTML size by ~90-95% while preserving tables, images, and important content - perfect for AI context.
Features
- Converts HTML from URLs to clean Markdown
- Preserves tables, images, and links
- Removes unnecessary elements (scripts, styles, navigation, footers, headers)
- Significant size reduction (typically 90-95% compression)
- Configurable options for images, tables, and links
- Built with
trafilaturaandBeautifulSoup4for robust extraction - Stream processing for efficient handling of large pages
- Size limits to prevent downloading excessively large content (1MB-50MB)
- Optional caching to speed up repeated conversions of the same URLs
- ๐ Browser mode with Playwright - Handles JavaScript-heavy sites and authenticated pages
- Execute JavaScript (perfect for SPAs: React, Vue, Angular)
- Use your browser profile with cookies (access authenticated pages!)
- Support for Chrome, Firefox, WebKit
- Configurable wait strategies for dynamic content
Installation
Prerequisites
- Python 3.10 or higher
uvpackage manager (recommended) orpip
Install with uv (recommended)
# Clone the repository
git clone <your-repo-url>
cd html2md
# Install dependencies
uv pip install -e .
# Install Playwright browsers (required for browser mode)
playwright install chromium
Install with pip
# Clone the repository
git clone <your-repo-url>
cd html2md
# Create virtual environment
python -m venv venv
source venv/bin/activate # On Windows: venv\Scripts\activate
# Install dependencies
pip install -e .
# Install Playwright browsers (required for browser mode)
playwright install chromium
Docker Installation (Recommended for Production)
The easiest way to use html2md is with Docker:
# Build the image
docker build -t html2md .
# Or use pre-built image (when published)
docker pull your-registry/html2md:latest
For Claude Desktop, configure with Docker:
{
"mcpServers": {
"html2md": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"html2md"
]
}
}
}
Docker Image Features:
- Pre-installed Playwright with Chromium
- Optimized for minimal size (~1GB)
- Non-root user for security
- Ready to use - no additional setup required
Configuration
Add the server to your Claude Desktop configuration file:
macOS
Edit ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"html2md": {
"command": "uv",
"args": [
"--directory",
"/absolute/path/to/html2md",
"run",
"html2md"
]
}
}
}
Windows
Edit %APPDATA%/Claude/claude_desktop_config.json:
{
"mcpServers": {
"html2md": {
"command": "uv",
"args": [
"--directory",
"C:\\absolute\\path\\to\\html2md",
"run",
"html2md"
]
}
}
}
Linux
Edit ~/.config/Claude/claude_desktop_config.json:
{
"mcpServers": {
"html2md": {
"command": "uv",
"args": [
"--directory",
"/absolute/path/to/html2md",
"run",
"html2md"
]
}
}
}
Usage
Once configured, the MCP server will be available in Claude Desktop. You can use the html_to_markdown tool:
Example 1: Basic conversion
Convert this webpage to markdown: https://example.com/article
Example 2: With options
Use the html_to_markdown tool with:
- url: https://example.com/docs
- include_images: false
- include_tables: true
Example 3: Browser mode for JavaScript-heavy sites
Use the html_to_markdown tool with:
- url: https://spa-application.com
- fetch_method: playwright
- wait_for: networkidle
Example 4: Access authenticated pages
Use the html_to_markdown tool with:
- url: https://private-site.com/dashboard
- fetch_method: playwright
- use_user_profile: true
- browser_type: chromium
Note: For use_user_profile=true, make sure Chrome is closed before running.
Tool Parameters
Basic Parameters:
url(required): URL of the webpage to convertinclude_images(optional, default: true): Include images in Markdowninclude_tables(optional, default: true): Include tables in Markdowninclude_links(optional, default: true): Include links in Markdowntimeout(optional, default: 30): Request timeout in seconds (5-120)
Performance Parameters:
max_size(optional, default: 10MB): Maximum size of content to download in bytes (1MB-50MB)use_cache(optional, default: false): Enable caching for faster repeated conversionscache_ttl(optional, default: 3600): Cache time-to-live in seconds (60-86400)
Browser Mode Parameters:
fetch_method(optional, default: "fetch"): Fetch method - "fetch" (fast) or "playwright" (handles JS, auth)browser_type(optional, default: "chromium"): Browser to use - "chromium", "firefox", or "webkit"headless(optional, default: true): Run browser in headless modewait_for(optional, default: "networkidle"): Wait strategy - "load", "domcontentloaded", or "networkidle"use_user_profile(optional, default: false): Use your browser profile with cookies (requires Chrome closed)
Development
Install development dependencies
uv pip install -e ".[dev]"
Run tests
pytest
Code formatting
# Format with black
black src/ tests/
# Lint with ruff
ruff check src/ tests/
Type checking
mypy src/
Architecture
The project consists of three main modules:
converter.py
Core HTML to Markdown conversion functionality:
fetch_html(): Downloads HTML from URLclean_html(): Removes unnecessary elements with BeautifulSoupconvert_to_markdown(): Converts cleaned HTML to Markdown with trafilaturahtml_to_markdown(): Main workflow combining all steps
server.py
MCP server implementation:
- Registers the
html_to_markdowntool - Handles tool calls and error responses
- Runs async MCP server with stdio transport
utils.py
Utility functions:
- Hash calculation for caching
- Text formatting and truncation
- Domain extraction
- Filename sanitization
cache.py
In-memory caching system:
SimpleCacheclass with TTL support- Global cache instance management
- Automatic expiration of old entries
- Hash-based cache keys for URL + parameters
browser.py
Playwright browser automation:
fetch_html_playwright()- Async browser-based HTML fetching- Support for Chromium, Firefox, WebKit
- User profile integration for authenticated access
- Configurable wait strategies for dynamic content
Troubleshooting
Server not appearing in Claude Desktop
- Check that the path in
claude_desktop_config.jsonis absolute and correct - Restart Claude Desktop completely
- Check Claude Desktop logs for errors
Installation issues
# Verify Python version
python --version # Should be 3.10+
# Try reinstalling dependencies
uv pip install --force-reinstall -e .
Conversion errors
- Timeout errors: Increase the
timeoutparameter - Empty content: Some websites may block automated requests or use JavaScript rendering
- Solution: Use
fetch_method: playwrightto execute JavaScript
- Solution: Use
- Parse errors: The webpage structure may be unusual or malformed
- Content too large: Increase the
max_sizeparameter (up to 50MB) or the page exceeds limits - Cache issues: Disable caching with
use_cache: falseif you need fresh content
Browser mode issues
- Playwright not installed: Run
playwright install chromium - Browser launch fails: Check that you have sufficient permissions and disk space
- User profile error: Make sure Chrome is completely closed before using
use_user_profile: true - Page doesn't load fully: Try different
wait_forstrategies:"load"- fastest, waits for page load event"domcontentloaded"- waits for DOM to be ready"networkidle"- slowest but most reliable, waits for network to be idle
- Authentication not working: Ensure you're using
browser_type: chromiumanduse_user_profile: true
Performance
Typical conversion results:
- Original HTML: ~500KB - 2MB
- Markdown output: ~25KB - 100KB
- Compression: 90-95%
- Processing time: 2-10 seconds (depending on page size and network)
FAQ
Common questions
Discussion
Questions & comments ยท 0
Sign In Sign in to leave a comment.