mcp-server-chart vs bgg-mcp
并排对比,帮你在这两个 MCP server 之间做选择。
mcp-server-chart by antvis | bgg-mcp by kkjdaniel | |
|---|---|---|
| Stars | ★ 4,068 | ★ 40 |
| 30天用量 | 10,239 | — |
| 综合分 | 84 | 45 |
| 官方 | — | — |
| 分类 | AI / LLM 工具开发者工具效率工具 | games搜索AI / LLM 工具 |
| 实现语言 | TypeScript | Go |
| 最近提交 | 本月 | 1 个月前 |
mcp-server-chart · 概述
使用 AntV 生成 26+ 种图表的 TypeScript MCP 服务器,支持多种图表类型和部署方式。
bgg-mcp · 概述
BGG MCP 通过 MCP 提供 BoardGameGeek API 访问,包含搜索、收藏、价格和推荐等功能工具。
mcp-server-chart · 使用场景
- 数据分析师从数据集中创建可视化报告
- AI 助手根据用户请求生成自定义图表
- Web 应用通过 HTTP API 嵌入可视化功能
bgg-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"]
}
}
}bgg-mcp · 安装
安装
Docker(推荐)
"bgg": {
"command": "docker",
"args": ["run", "-i", "--rm",
"-e", "BGG_API_KEY",
"-e", "BGG_USERNAME",
"kdaniel/bgg-mcp"
],
"env": {
"BGG_API_KEY": "your_api_key_here",
"BGG_USERNAME": "your_bgg_username"
}
}手动设置
- 从 [go.dev/doc/install](https://go.dev/doc/install) 安装 Go
- 构建应用程序:
make build- 添加到您的 MCP 配置中:
"bgg": {
"command": "path/to/build/bgg-mcp",
"args": ["-mode", "stdio"]
}