mcp-server-chart vs gimp-mcp
并排对比,帮你在这两个 MCP server 之间做选择。
mcp-server-chart by antvis | gimp-mcp by maorcc | |
|---|---|---|
| Stars | ★ 4,068 | ★ 110 |
| 30天用量 | 10,239 | — |
| 综合分 | 84 | 49 |
| 官方 | — | — |
| 分类 | AI / LLM 工具开发者工具效率工具 | 多媒体AI / LLM 工具开发者工具 |
| 实现语言 | TypeScript | Python |
| 最近提交 | 本月 | 1 个月前 |
mcp-server-chart · 概述
使用 AntV 生成 26+ 种图表的 TypeScript MCP 服务器,支持多种图表类型和部署方式。
gimp-mcp · 概述
GIMP MCP 服务器通过 56 个专业工具提供实时视觉反馈,让 AI 助手能够编辑图像。
mcp-server-chart · 使用场景
- 数据分析师从数据集中创建可视化报告
- AI 助手根据用户请求生成自定义图表
- Web 应用通过 HTTP API 嵌入可视化功能
gimp-mcp · 使用场景
- 具有视觉验证的迭代背景移除
- 表情编辑和角色修改
- 包含色彩调整和文本合成的复杂多步骤流程
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"]
}
}
}gimp-mcp · 安装
安装
前置条件
- GIMP 3.2+ (已在 3.2.2 上测试)
- Python 3.8+
- uv (Python 包管理器)
- 兼容 MCP 的 AI 客户端 (Claude Desktop, Claude Code 等)
步骤
- 克隆并安装依赖项:
git clone https://github.com/maorcc/gimp-mcp.git
cd gimp-mcp
uv sync- 通过将
gimp-mcp-plugin.py复制到 GIMP 的插件目录来安装 GIMP 插件:
**Linux:**
mkdir -p ~/.config/GIMP/3.0/plug-ins/gimp-mcp-plugin
cp gimp-mcp-plugin.py ~/.config/GIMP/3.0/plug-ins/gimp-mcp-plugin/
chmod +x ~/.config/GIMP/3.0/plug-ins/gimp-mcp-plugin/gimp-mcp-plugin.py**macOS:**
mkdir -p ~/Library/Application\ Support/GIMP/3.0/plug-ins/gimp-mcp-plugin
cp gimp-mcp-plugin.py ~/Library/Application\ Support/GIMP/3.0/plug-ins/gimp-mcp-plugin/
chmod +x ~/Library/Application\ Support/GIMP/3.0/plug-ins/gimp-mcp-plugin/gimp-mcp-plugin.py**Windows:** 复制到 %APPDATA%\GIMP\3.2\plug-ins\gimp-mcp-plugin\gimp-mcp-plugin.py
- 在 GIMP 中启动 MCP 服务器:打开图像 > 工具 > 启动 MCP 服务器
- 配置您的 MCP 客户端。对于 Claude Desktop:
{
"mcpServers": {
"gimp": {
"command": "uv",
"args": ["run", "--directory", "/full/path/to/gimp-mcp", "gimp_mcp_server.py"]
}
}
}