MCP Catalogs
首页

mcp-server-chart vs blockbench-mcp-plugin

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

mcp-server-chart
by antvis
blockbench-mcp-plugin
by jasonjgardner
Stars★ 4,068★ 117
30天用量10,239
综合分8447
官方
分类
AI / LLM 工具开发者工具效率工具
开发者工具多媒体AI / LLM 工具
实现语言TypeScriptTypeScript
最近提交本月1 个月前

mcp-server-chart · 概述

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

blockbench-mcp-plugin · 概述

TypeScript插件,为Blockbench 3D模型编辑器添加MCP服务器功能。

mcp-server-chart · 使用场景

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

blockbench-mcp-plugin · 使用场景

  • AI辅助的Blockbench 3D模型编辑和操作
  • 3D模型自动纹理生成
  • AI模型生成工具与3D工作流的集成

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"]
    }
  }
}

blockbench-mcp-plugin · 安装

安装

1. 安装Blockbench插件

打开Blockbench桌面版,转到文件 > 插件,点击'从URL加载插件'并粘贴:https://jasonjgardner.github.io/blockbench-mcp-plugin/mcp.js

2. 配置MCP服务器

在Blockbench设置中:设置 > 常规 > 设置MCP服务器端口和MCP服务器端点(默认::3000/bb-mcp

3. 配置MCP客户端

**Claude Desktop**:添加到claude_desktop_config.json

{
  "mcpServers": {
    "blockbench": {
      "command": "npx",
      "args": ["mcp-remote", "http://localhost:3000/bb-mcp"]
    }
  }
}

**VS Code**:创建.vscode/mcp.json

{
  "servers": {
    "blockbench": {
      "url": "http://localhost:3000/bb-mcp",
      "type": "http"
    }
  }
}

**其他客户端**:有关Ollama、Cline、Antigravity和OpenCode的配置选项,请参阅README。

对比内容由 README + GitHub 公开数据自动生成,定期更新。