MCP Catalogs
Home

datagouv-mcp vs everything

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

datagouv-mcp
by datagouv
everything
by modelcontextprotocol
Stars★ 1,460★ 85,748
30d uses
Score5577
Official
Categories
AI / LLM ToolsDatabaseSearch
Developer ToolsAI / LLM ToolsOther
LanguagePythonTypeScript
Last committhis monththis month

datagouv-mcp · Summary

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

everything · Summary

Official MCP test server exercising all protocol features for client builders.

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

everything · Use cases

  • Testing MCP client implementations against all protocol features
  • Learning MCP protocol capabilities through a reference server
  • Validating client compatibility with different transport methods

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

everything · Install

NPX (recommended)

{
  "mcpServers": {
    "everything": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

On Windows, use cmd /c:

{
  "mcpServers": {
    "everything": {
      "command": "cmd",
      "args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

Docker

{
  "mcpServers": {
    "everything": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "mcp/everything"]
    }
  }
}

Global install

npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything
Comparison generated from public README + GitHub signals. Last updated automatically.