mcp-server-chart vs markdownify-mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | markdownify-mcp by zcaceres | |
|---|---|---|
| Stars | ★ 4,068 | ★ 2,686 |
| 30d uses | 10,239 | — |
| Score | 84 | 57 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | File SystemProductivityDeveloper Tools |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
markdownify-mcp · Summary
MCP server converting various file types and web content to Markdown with comprehensive tool coverage.
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
markdownify-mcp · Use cases
- Convert research papers (PDF) and lecture recordings (audio) into readable Markdown for study notes
- Transform web articles, search results, and video transcripts into digestible Markdown documents
- Automatically process batches of office documents (DOCX, XLSX, PPTX) for archival and search purposes
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"]
}
}
}markdownify-mcp · Install
Installation
- Clone this repository
- Install dependencies:
``bash bun install ` The preinstall step creates a Python virtual environment at .venv and installs markitdown[all]`.
- Build the project:
``bash bun run build ``
- Start the server:
``bash bun start ``
Claude Desktop Configuration
{
"mcpServers": {
"markdownify": {
"command": "node",
"args": [
"{ABSOLUTE PATH TO FILE HERE}/dist/index.js"
]
}
}
}