loading…
Search for a command to run...
loading…
Converts web pages and HTML strings into clean, LLM-optimized Markdown with metadata extraction and token estimation. It uses a lightweight, browserless approac
Converts web pages and HTML strings into clean, LLM-optimized Markdown with metadata extraction and token estimation. It uses a lightweight, browserless approach to provide token-efficient output for more effective LLM processing.
MCP server for converting web pages to clean, LLM-optimized Markdown.
Lightweight — uses HTTP fetch, no browser needed. Powered by readdown.
fetch_markdownFetch a URL and convert it to clean Markdown with metadata and token count.
convert_htmlConvert an HTML string to Markdown. Use when you already have the HTML.
Add to claude_desktop_config.json:
{
"mcpServers": {
"readdown": {
"command": "npx",
"args": ["-y", "github:zcag/readdown-mcp"]
}
}
}
Add to .cursor/mcp.json:
{
"mcpServers": {
"readdown": {
"command": "npx",
"args": ["-y", "github:zcag/readdown-mcp"]
}
}
}
Most web-fetching MCP servers use @mozilla/readability + turndown (two packages, 65KB).
readdown replaces both in a single 5KB package with better LLM optimization:
MIT
Добавь это в claude_desktop_config.json и перезапусти Claude Desktop.
{
"mcpServers": {
"readdown-mcp": {
"command": "npx",
"args": []
}
}
}