From web2md
Converts web URLs to full markdown or generates summaries at detail levels 1-5 (1=concise, 5=detailed). Triggers on bare URLs or fetch/summarize/explain requests; skips auth-walled pages.
How this skill is triggered — by the user, by Claude, or both
Slash command
/web2md:web-summarizeThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Use `mcp__web2md__webToMarkdown(url, summaryLevel?, debug?)` for all URL requests. Never use WebFetch.
Use mcp__web2md__webToMarkdown(url, summaryLevel?, debug?) for all URL requests. Never use WebFetch.
| Case | summaryLevel | debug |
|---|---|---|
| Full page markdown | omit | omit |
| Summary requested | 1–5 | omit |
| Runtime verification needed | optional | true |
null.debug=true when troubleshooting.npx claudepluginhub kevstevie/web2md --plugin web2mdSummarizes web content by fetching URLs, extracting quote-grounded key passages, and structuring output for documentation, articles, API references, READMEs. Reports partial accessibility.
Fetches any URL and returns clean Markdown via local trafilatura, with Exa MCP fallback for JS-rendered or anti-bot pages. Use instead of built-in WebFetch for reading, scraping, or summarizing web pages.
Fetches any URL and converts to clean markdown using baoyu-fetch CLI (Chrome CDP with site-specific adapters). Built-in support for X/Twitter, YouTube transcripts, Hacker News, and generic pages. Handles login/CAPTCHA via interaction wait modes.