mcp-server-chart vs ai-testing-mcp
并排对比,帮你在这两个 MCP server 之间做选择。
mcp-server-chart by antvis | ai-testing-mcp by groovy-web | |
|---|---|---|
| Stars | ★ 4,068 | ★ 18 |
| 30天用量 | 10,239 | — |
| 综合分 | 84 | 43 |
| 官方 | — | — |
| 分类 | AI / LLM 工具开发者工具效率工具 | AI / LLM 工具开发者工具可观测性 |
| 实现语言 | TypeScript | — |
| 最近提交 | 本月 | 2 个月前 |
mcp-server-chart · 概述
使用 AntV 生成 26+ 种图表的 TypeScript MCP 服务器,支持多种图表类型和部署方式。
ai-testing-mcp · 概述
全面的MCP服务器,提供AI测试、评估和质量保证的标准化方法。
mcp-server-chart · 使用场景
- 数据分析师从数据集中创建可视化报告
- AI 助手根据用户请求生成自定义图表
- Web 应用通过 HTTP API 嵌入可视化功能
ai-testing-mcp · 使用场景
- 开发流水线中的AI模型验证和质量保证
- 针对提示注入和对抗性攻击的自动化安全测试
- AI系统的性能基准测试和优化
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"]
}
}
}ai-testing-mcp · 安装
# 克隆仓库
git clone https://github.com/groovy-web/ai-testing-mcp.git
cd ai-testing-mcp
# 安装依赖
npm install
# 配置环境
cp .env.example .env
# 编辑您的API密钥
# 启动MCP服务器
npm start添加到Claude Desktop配置中:
{
"mcpServers": {
"ai-testing": {
"command": "node",
"args": ["/path/to/ai-testing-mcp/dist/index.js"],
"env": {
"OPENAI_API_KEY": "your-key",
"ANTHROPIC_API_KEY": "your-key"
}
}
}
}