mcp-server-chart vs markitdown_mcp_server
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | markitdown_mcp_server by KorigamiK | |
|---|---|---|
| Stars | ★ 4,068 | ★ 71 |
| 30d uses | 10,239 | — |
| Score | 84 | 45 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | File SystemProductivityDeveloper Tools |
| Language | TypeScript | Python |
| Last commit | this month | 5 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
markitdown_mcp_server · Summary
MCP server converting multiple file formats to Markdown using MarkItDown utility.
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
markitdown_mcp_server · Use cases
- Converting research papers from PDF to Markdown for easier analysis and citation
- Processing meeting recordings by transcribing audio and converting to Markdown notes
- Automatically converting document collections from various formats into a unified Markdown archive
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"]
}
}
}markitdown_mcp_server · Install
Installation
Via Smithery
npx -y @smithery/cli install @KorigamiK/markitdown_mcp_server --client claudeManual Installation
- Clone this repository
- Install dependencies:
uv installClaude Desktop Configuration
Add the following to your Claude Desktop config:
{
"mcpServers": {
"markitdown": {
"command": "uv",
"args": [
"--directory",
"/path/to/markitdown_mcp_server",
"run",
"markitdown-mcp"
]
}
}
}