mcp-server-chart vs feyod-mcp
并排对比,帮你在这两个 MCP server 之间做选择。
mcp-server-chart by antvis | feyod-mcp by jeroenvdmeer | |
|---|---|---|
| Stars | ★ 4,068 | ★ 1 |
| 30天用量 | 10,239 | — |
| 综合分 | 84 | 31 |
| 官方 | — | — |
| 分类 | AI / LLM 工具开发者工具效率工具 | AI / LLM 工具数据库其它 |
| 实现语言 | TypeScript | Python |
| 最近提交 | 本月 | 10 个月前 |
mcp-server-chart · 概述
使用 AntV 生成 26+ 种图表的 TypeScript MCP 服务器,支持多种图表类型和部署方式。
feyod-mcp · 概述
一个通过自然语言接口查询费耶诺德足球数据的MCP服务器。
mcp-server-chart · 使用场景
- 数据分析师从数据集中创建可视化报告
- AI 助手根据用户请求生成自定义图表
- Web 应用通过 HTTP API 嵌入可视化功能
feyod-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"]
}
}
}feyod-mcp · 安装
安装
使用 Docker(推荐)
# 拉取 Docker 镜像
docker pull jeroenvdmeer/feyod-mcp
# 运行容器
docker run -p 8000:8000 \
-e LLM_PROVIDER="google" \
-e LLM_API_KEY="your_api_key" \
jeroenvdmeer/feyod-mcp本地设置
# 克隆仓库
git clone https://github.com/jeroenvdmeer/feyod-mcp.git
git clone https://github.com/jeroenvdmeer/feyod.git
cd feyod-mcp
# 创建并激活虚拟环境
uv venv
source .venv/bin/activate # 或在 Windows 上使用 .venv\Scripts\activate
# 安装依赖
uv add "mcp[cli]" langchain langchain-openai langchain-google-genai python-dotenv aiosqlite
# 设置数据库
cd ../feyod
sqlite3 feyod.db < feyod.sql
cd ../mcpClaude Desktop 配置
添加到 Claude Desktop config.json:
{
"mcpServers": {
"feyod": {
"command": "python",
"args": ["/path/to/feyod-mcp/main.py"],
"env": {
"LLM_PROVIDER": "google",
"LLM_API_KEY": "your_api_key",
"DATABASE_PATH": "../feyod/feyod.db"
}
}
}
}