mcp-server-chart vs toolhive-registry-server
并排对比,帮你在这两个 MCP server 之间做选择。
mcp-server-chart by antvis | toolhive-registry-server by stacklok | |
|---|---|---|
| Stars | ★ 4,068 | ★ 16 |
| 30天用量 | 10,239 | — |
| 综合分 | 84 | 42 |
| 官方 | — | — |
| 分类 | AI / LLM 工具开发者工具效率工具 | 运维基建开发者工具安全 |
| 实现语言 | TypeScript | Go |
| 最近提交 | 本月 | 本月 |
mcp-server-chart · 概述
使用 AntV 生成 26+ 种图表的 TypeScript MCP 服务器,支持多种图表类型和部署方式。
toolhive-registry-server · 概述
ToolHive 注册服务器用于发现、管控和组织内 MCP 服务器与技能的访问权限。
mcp-server-chart · 使用场景
- 数据分析师从数据集中创建可视化报告
- AI 助手根据用户请求生成自定义图表
- Web 应用通过 HTTP API 嵌入可视化功能
toolhive-registry-server · 使用场景
- 在拥有多个团队的大型组织中集中管理 MCP 服务器
- 从公共注册表和内部源聚合 MCP 服务器,实现统一的访问控制
- 根据不同团队的角色和需求,提供相同的 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"]
}
}
}toolhive-registry-server · 安装
安装
前提条件
- Go 1.26 或更高版本(用于从源码构建)
- Task(用于构建自动化)
- PostgreSQL 16+
从源码构建
task build运行
# 使用 Git 源运行
thv-registry-api serve --config examples/config-git.yaml
# 使用本地文件运行
thv-registry-api serve --config examples/config-file.yamlDocker
task docker-upClaude Desktop 集成
添加到 Claude Desktop 配置:
{
"mcpServers": {
"toolhive": {
"command": "thv-registry-api",
"args": ["serve", "--config", "path/to/config.yaml"]
}
}
}