html-to-markdown-mcp vs everything
Side-by-side comparison to help you pick between these two MCP servers.
html-to-markdown-mcp by levz0r | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 24 | ★ 85,748 |
| 30d uses | — | — |
| Score | 45 | 77 |
| Official | — | ✓ |
| Categories | Web ScrapingDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsOther |
| Language | JavaScript | TypeScript |
| Last commit | 2 mo ago | this month |
html-to-markdown-mcp · Summary
MCP server that converts HTML to Markdown using Turndown.js with SSRF protection.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
html-to-markdown-mcp · Use cases
- Convert web articles to Markdown for offline reading
- Extract clean content from messy HTML pages
- Automatically save webpage content to Markdown files
everything · Use cases
- Testing MCP client implementations against all protocol features
- Learning MCP protocol capabilities through a reference server
- Validating client compatibility with different transport methods
html-to-markdown-mcp · Install
Installation
npm install -g html-to-markdown-mcpClaude Desktop Configuration
{
"mcpServers": {
"html-to-markdown": {
"command": "npx",
"args": ["html-to-markdown-mcp"]
}
}
}Local Development
git clone https://github.com/levz0r/html-to-markdown-mcp.git
cd html-to-markdown-mcp
npm install
npm starteverything · Install
NPX (recommended)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}On Windows, use cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}Global install
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything