MCP Catalogs
Home

wren-engine vs datagouv-mcp

Side-by-side comparison to help you pick between these two MCP servers.

wren-engine
by Canner
datagouv-mcp
by datagouv
Stars★ 661★ 1,460
30d uses
Score5355
Official
Categories
AI / LLM ToolsDatabaseDeveloper Tools
AI / LLM ToolsDatabaseSearch
LanguageJavaPython
Last committhis monththis month

wren-engine · Summary

An open context engine for AI agents that provides business context and semantic layer over data sources.

datagouv-mcp · Summary

Official MCP server for data.gouv.fr that enables AI chatbots to search and analyze French open data.

wren-engine · Use cases

  • Natural-language analytics with trusted business definitions
  • AI copilots that answer questions across governed enterprise data
  • Code assistants that need real business context, not just schema dumps

datagouv-mcp · Use cases

  • Ask about real estate prices in specific French regions
  • Retrieve latest demographic data for French cities
  • Search and analyze public datasets through conversational AI

wren-engine · Install

Installation

Through MCP

  1. Clone the repository: git clone https://github.com/Canner/wren-engine
  2. Navigate to the MCP server: cd wren-engine/mcp-server
  3. Follow the setup instructions in the README

Through AI Agents

  1. Follow the [Installation guide](https://docs.getwren.ai/oss/engine/get_started/installation)
  2. Set up quickstart with [jaffle_shop example](https://docs.getwren.ai/oss/engine/get_started/quickstart)

Claude Desktop Configuration

Add to your Claude Desktop config.json:

{
  "mcpServers": {
    "wren": {
      "command": "uv",
      "args": ["run", "mcp-server", "serve"],
      "env": {
        "WREN_ENGINE_PATH": "/path/to/wren-engine"
      }
    }
  }
}

datagouv-mcp · Install

Installation

Using Public Hosted Server

The recommended approach is to use the public instance at https://mcp.data.gouv.fr/mcp.

Claude Desktop Configuration

Add to your Claude Desktop configuration file:

{
  "mcpServers": {
    "datagouv": {
      "command": "npx",
      "args": [
        "mcp-remote",
        "https://mcp.data.gouv.fr/mcp"
      ]
    }
  }
}

Local Installation with Docker

git clone git@github.com/datagouv/datagouv-mcp.git
cd datagouv-mcp
docker compose up -d

Manual Installation

# Install dependencies
uv sync

# Copy environment file
cp .env.example .env

# Start the server
uv run main.py
Comparison generated from public README + GitHub signals. Last updated automatically.