mcp-server-chart vs chatgpt2md
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | chatgpt2md by NextStat | |
|---|---|---|
| Stars | ★ 4,068 | ★ 16 |
| 30d uses | 10,239 | — |
| Score | 84 | 42 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | AI / LLM ToolsProductivityFile System |
| Language | TypeScript | Rust |
| Last commit | this month | 3 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
chatgpt2md · Summary
ChatGPT to Markdown converter with full-text search and MCP server for accessing conversations in Claude.
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
chatgpt2md · Use cases
- Access ChatGPT conversation history directly in Claude for contextual reference
- Search and retrieve specific conversations from large ChatGPT exports
- Archive ChatGPT chats in a readable Markdown format with full-text search capabilities
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"]
}
}
}chatgpt2md · Install
Installation
Quick Install
cargo install --git https://github.com/NextStat/chatgpt2mdBinary Installation
- Download the appropriate binary for your platform from [Releases](https://github.com/NextStat/chatgpt2md/releases)
- Extract and move to PATH:
``bash tar xzf chatgpt2md-*.tar.gz sudo mv chatgpt2md /usr/local/bin/ ``
Claude Configuration
chatgpt2md install --index ./chatgpt_chats/.index --chats ./chatgpt_chatsManual Claude Desktop Configuration
Edit Claude Desktop config file:
- **macOS:**
~/Library/Application Support/Claude/claude_desktop_config.json - **Windows:**
%APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"chatgpt-history": {
"command": "/path/to/chatgpt2md",
"args": ["serve", "--index", "/path/to/chatgpt_chats/.index", "--chats", "/path/to/chatgpt_chats"]
}
}
}