🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

@mukundakatta/html-to-markdown-mcp

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@mukundakatta/html-to-markdown-mcp

MCP server for HTML → Markdown conversion. For web-scraping and read-the-page agents that want clean text.

latest
Source
npmnpm
Version
0.1.0
Version published
Maintainers
1
Created
Source

@mukundakatta/html-to-markdown-mcp

MCP server for HTML → Markdown conversion. For web-scraping and read-the-page agents.

Tools

  • html_to_md(html, ...options) — Turndown-based conversion with sane defaults (ATX headings, fenced code, inline links). Strips scripts/styles by default.
  • extract_text(html) — strip everything, return whitespace-normalized text. Faster than html_to_md when you only need text content.

Why this exists

Web-scraping agents constantly need clean Markdown from HTML. LLMs do this inline but inconsistently across turns (different heading styles, different list markers, sometimes leaving raw HTML tags in). A deterministic converter avoids the variance.

This is intentionally not a full content-extraction pipeline (no Readability-style "main content" detection — use that in a separate step if needed).

Install — Claude Desktop

{
  "mcpServers": {
    "html-to-markdown": { "command": "npx", "args": ["-y", "@mukundakatta/html-to-markdown-mcp"] }
  }
}

Same shape for Cursor / Cline / Windsurf / Zed.

License

MIT OR Apache-2.0.

Keywords

mcp

FAQs

Package last updated on 10 May 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts