html-to-markdown-mcp vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
html-to-markdown-mcp by levz0r | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 24 | ★ 85,748 |
| 30d uses | — | — |
| Score | 45 | 77 |
| Official | — | ✓ |
| Categories | Web ScrapingDeveloper ToolsProductivity | File SystemDeveloper ToolsProductivity |
| 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.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
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
filesystem · Use cases
- Enable AI models to read and write project files during development
- Allow Claude or other MCP clients to browse and analyze codebases
- Provide secure sandboxed access to specific directories for content generation
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 startfilesystem · Install
Installation
Using NPX
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"/path/to/allowed/directory"
]
}
}
}Using Docker
{
"mcpServers": {
"filesystem": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
"mcp/filesystem",
"/projects"
]
}
}
}VS Code Extension
Click the installation buttons in the README to install directly in VS Code.