mcp-server-chart vs blender-open-mcp
并排对比,帮你在这两个 MCP server 之间做选择。
mcp-server-chart by antvis | blender-open-mcp by dhakalnirajan | |
|---|---|---|
| Stars | ★ 4,068 | ★ 97 |
| 30天用量 | 10,239 | — |
| 综合分 | 84 | 47 |
| 官方 | — | — |
| 分类 | AI / LLM 工具开发者工具效率工具 | AI / LLM 工具开发者工具多媒体 |
| 实现语言 | TypeScript | Python |
| 最近提交 | 本月 | 1 个月前 |
mcp-server-chart · 概述
使用 AntV 生成 26+ 种图表的 TypeScript MCP 服务器,支持多种图表类型和部署方式。
blender-open-mcp · 概述
一个通过Ollama连接本地AI模型与Blender 3D的MCP服务器,实现自然语言控制。
mcp-server-chart · 使用场景
- 数据分析师从数据集中创建可视化报告
- AI 助手根据用户请求生成自定义图表
- Web 应用通过 HTTP API 嵌入可视化功能
blender-open-mcp · 使用场景
- 3D艺术家使用自然语言命令控制Blender
- AI辅助建模和纹理工作流程
- 通过MCP客户端自动化Blender任务
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"]
}
}
}blender-open-mcp · 安装
安装
先决条件
- Blender 3.0+
- Python 3.10+
- Ollama
- uv
步骤
- 克隆并安装:
git clone https://github.com/dhakalnirajan/blender-open-mcp.git
cd blender-open-mcp
uv venv
source .venv/bin/activate # Linux / macOS
# .venv\Scripts\activate # Windows
uv pip install -e .- 安装Blender插件:
- 打开Blender
- 编辑 → 首选项 → 插件 → 安装...
- 从仓库中选择
addon.py - 启用"Blender MCP"
- 拉取Ollama模型:
ollama pull llama3.2Claude Desktop / Cursor集成
在mcp.json中添加:
{
"mcpServers": {
"blender-open-mcp": {
"command": "blender-mcp",
"args": ["--transport", "stdio"]
}
}
}