MCP Catalogs
Home

datagouv-mcp vs mcp-brasil

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

datagouv-mcp
by datagouv
mcp-brasil
by Mcp-Brasil
Stars★ 1,460★ 1,561
30d uses
Score5556
Official
Categories
AI / LLM ToolsDatabaseSearch
AI / LLM ToolsDeveloper ToolsDatabase
LanguagePythonPython
Last committhis month1 mo ago

datagouv-mcp · Summary

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

mcp-brasil · Summary

Comprehensive MCP server providing access to 70 Brazilian public APIs with 533 tools for various government data sources.

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

mcp-brasil · Use cases

  • Query legislative projects about AI in the Chamber of Deputies in 2024 and identify their authors
  • Analyze economic trends by comparing Selic interest rates with inflation (IPCA) over the past year
  • Find the top 10 largest federal government contracts in 2024 and identify the suppliers

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

mcp-brasil · Install

Install with pip or uv:

pip install mcp-brasil
uv add mcp-brasil

For Claude Desktop, add to claude_desktop_config.json:

{
  "mcpServers": {
    "mcp-brasil": {
      "command": "uvx",
      "args": ["--from", "mcp-brasil", "python", "-m", "mcp_brasil.server"],
      "env": {
        "TRANSPARENCIA_API_KEY": "sua-chave-aqui",
        "DATAJUD_API_KEY": "sua-chave-aqui",
        "META_ACCESS_TOKEN": "seu-token-aqui"
      }
    }
  }
}

API keys are optional - without them, 36 APIs still function normally.

Comparison generated from public README + GitHub signals. Last updated automatically.