datagouv-mcp vs mongodb-mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
datagouv-mcp by datagouv | mongodb-mcp-server by mongodb-js | |
|---|---|---|
| Stars | ★ 1,460 | ★ 1,023 |
| 30d uses | — | — |
| Score | 55 | 55 |
| Official | — | — |
| Categories | AI / LLM ToolsDatabaseSearch | DatabaseDeveloper ToolsCloud Storage |
| Language | Python | TypeScript |
| Last commit | this month | this month |
datagouv-mcp · Summary
Official MCP server for data.gouv.fr that enables AI chatbots to search and analyze French open data.
mongodb-mcp-server · Summary
MongoDB MCP Server connects to MongoDB databases and Atlas clusters, offering tools for database operations and Atlas management.
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
mongodb-mcp-server · Use cases
- AI agents querying and analyzing MongoDB databases without direct database access
- Automating MongoDB Atlas cluster management through MCP-enabled clients
- Building RAG applications that can access MongoDB data as contextual resources
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 -dManual Installation
# Install dependencies
uv sync
# Copy environment file
cp .env.example .env
# Start the server
uv run main.pymongodb-mcp-server · Install
Installation
Via NPM (for Claude Desktop)
{
"mcpServers": {
"MongoDB": {
"command": "npx",
"args": ["-y", "mongodb-mcp-server@latest", "--readOnly"],
"env": {
"MDB_MCP_CONNECTION_STRING": "mongodb://localhost:27017/myDatabase"
}
}
}
}Via Docker
{
"mcpServers": {
"MongoDB": {
"command": "docker",
"args": [
"run",
"--rm",
"-e",
"MDB_MCP_READ_ONLY=true",
"-i",
"mongodb/mongodb-mcp-server:latest"
]
}
}
}