MCP Catalogs
首页

mcp-server-chart vs chatgpt2md

并排对比,帮你在这两个 MCP server 之间做选择。

mcp-server-chart
by antvis
chatgpt2md
by NextStat
Stars★ 4,068★ 16
30天用量10,239
综合分8442
官方
分类
AI / LLM 工具开发者工具效率工具
AI / LLM 工具效率工具本地文件系统
实现语言TypeScriptRust
最近提交本月3 个月前

mcp-server-chart · 概述

使用 AntV 生成 26+ 种图表的 TypeScript MCP 服务器,支持多种图表类型和部署方式。

chatgpt2md · 概述

将ChatGPT导出转换为Markdown并提供全文搜索功能,通过MCP服务器让Claude访问对话历史。

mcp-server-chart · 使用场景

  • 数据分析师从数据集中创建可视化报告
  • AI 助手根据用户请求生成自定义图表
  • Web 应用通过 HTTP API 嵌入可视化功能

chatgpt2md · 使用场景

  • 直接在Claude中访问ChatGPT对话历史进行上下文参考
  • 从大量ChatGPT导出中搜索和检索特定对话
  • 以可读的Markdown格式存档ChatGPT对话,并具备全文搜索功能

mcp-server-chart · 安装

安装

全局安装:

npm install -g @antv/mcp-server-chart

对于桌面应用(如 Claude Desktop、VSCode):

{
  "mcpServers": {
    "mcp-server-chart": {
      "command": "npx",
      "args": ["-y", "@antv/mcp-server-chart"]
    }
  }
}

Windows 系统:

{
  "mcpServers": {
    "mcp-server-chart": {
      "command": "cmd",
      "args": ["/c", "npx", "-y", "@antv/mcp-server-chart"]
    }
  }
}

chatgpt2md · 安装

安装

快速安装
cargo install --git https://github.com/NextStat/chatgpt2md
二进制文件安装
  1. 从[发布页](https://github.com/NextStat/chatgpt2md/releases)下载适合您平台的二进制文件
  2. 解压并移动到PATH:

``bash tar xzf chatgpt2md-*.tar.gz sudo mv chatgpt2md /usr/local/bin/ ``

Claude配置
chatgpt2md install --index ./chatgpt_chats/.index --chats ./chatgpt_chats
手动Claude Desktop配置

编辑Claude Desktop配置文件:

  • **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"]
    }
  }
}
对比内容由 README + GitHub 公开数据自动生成,定期更新。