wren-engine vs datagouv-mcp
并排对比,帮你在这两个 MCP server 之间做选择。
wren-engine by Canner | datagouv-mcp by datagouv | |
|---|---|---|
| Stars | ★ 661 | ★ 1,460 |
| 30天用量 | — | — |
| 综合分 | 53 | 55 |
| 官方 | — | — |
| 分类 | AI / LLM 工具数据库开发者工具 | AI / LLM 工具数据库搜索 |
| 实现语言 | Java | Python |
| 最近提交 | 本月 | 本月 |
wren-engine · 概述
为AI代理提供的开放上下文引擎,在数据源之上提供业务上下文和语义层。
datagouv-mcp · 概述
法国政府开放数据平台的官方 MCP 服务器,使 AI 聊天机器人能够搜索和分析开放数据。
wren-engine · 使用场景
- 使用可信业务定义进行自然语言分析
- 能够回答跨受管企业数据问题的AI副驾驶
- 需要真实业务上下文而非仅模式转储的代码助手
datagouv-mcp · 使用场景
- 询问特定地区的房地产价格
- 检索法国城市最新的人口统计数据
- 通过对话式 AI 搜索和分析公共数据集
wren-engine · 安装
安装
通过MCP
- 克隆仓库:
git clone https://github.com/Canner/wren-engine - 进入MCP服务器目录:
cd wren-engine/mcp-server - 遵循README中的设置说明
通过AI代理
- 按照[安装指南](https://docs.getwren.ai/oss/engine/get_started/installation)
- 使用[jaffle_shop示例](https://docs.getwren.ai/oss/engine/get_started/quickstart)进行快速启动
Claude Desktop配置
添加到您的Claude Desktop config.json:
{
"mcpServers": {
"wren": {
"command": "uv",
"args": ["run", "mcp-server", "serve"],
"env": {
"WREN_ENGINE_PATH": "/path/to/wren-engine"
}
}
}
}datagouv-mcp · 安装
安装
使用公共托管服务器
推荐使用位于 https://mcp.data.gouv.fr/mcp 的公共实例。
Claude Desktop 配置
在 Claude Desktop 配置文件中添加以下内容:
{
"mcpServers": {
"datagouv": {
"command": "npx",
"args": [
"mcp-remote",
"https://mcp.data.gouv.fr/mcp"
]
}
}
}使用 Docker 本地安装
git clone git@github.com/datagouv/datagouv-mcp.git
cd datagouv-mcp
docker compose up -d手动安装
# 安装依赖
uv sync
# 复制环境文件
cp .env.example .env
# 启动服务器
uv run main.py