mcp-server-chart vs html-to-markdown-mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | html-to-markdown-mcp by levz0r | |
|---|---|---|
| Stars | ★ 4,068 | ★ 24 |
| 30d uses | 10,239 | — |
| Score | 84 | 45 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Web ScrapingDeveloper ToolsProductivity |
| Language | TypeScript | JavaScript |
| Last commit | this month | 2 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
html-to-markdown-mcp · Summary
MCP server that converts HTML to Markdown using Turndown.js with SSRF protection.
mcp-server-chart · Use cases
- Data analysts creating visual reports from datasets
- AI assistants generating custom charts based on user requests
- Web applications embedding visualization capabilities via HTTP API
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
mcp-server-chart · Install
Installation
Install globally:
npm install -g @antv/mcp-server-chartFor Desktop Apps (e.g., Claude Desktop, VSCode):
{
"mcpServers": {
"mcp-server-chart": {
"command": "npx",
"args": ["-y", "@antv/mcp-server-chart"]
}
}
}For Windows:
{
"mcpServers": {
"mcp-server-chart": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@antv/mcp-server-chart"]
}
}
}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 start