MCP Catalogs
Home

dbhub vs datagouv-mcp

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

dbhub
by bytebase
datagouv-mcp
by datagouv
Stars★ 2,769★ 1,460
30d uses
Score5755
Official
Categories
DatabaseDeveloper ToolsOps & Infra
AI / LLM ToolsDatabaseSearch
LanguageTypeScriptPython
Last commit1 mo agothis month

dbhub · Summary

A zero-dependency MCP server connecting to multiple databases with token-efficient SQL tools.

datagouv-mcp · Summary

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

dbhub · Use cases

  • Database exploration and schema inspection for developers
  • Secure SQL query execution with safety controls in CI/CD pipelines
  • Multi-database management and operations through a unified interface

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

dbhub · Install

Installation

**Docker:**

docker run --rm --init \   --name dbhub \   --publish 8080:8080 \   bytebase/dbhub \   --transport http \   --port 8080 \   --dsn "postgres://user:password@localhost:5432/dbname?sslmode=disable"

**NPM:**

npx @bytebase/dbhub@latest --transport http --port 8080 --dsn "postgres://user:password@localhost:5432/dbname?sslmode=disable"

**Demo Mode:**

npx @bytebase/dbhub@latest --transport http --port 8080 --demo

Claude Desktop Configuration

Add the following to your Claude Desktop configuration:

{
  "mcpServers": {
    "dbhub": {
      "command": "npx",
      "args": ["@bytebase/dbhub@latest", "--transport", "stdio"]
    }
  }
}

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.