datagouv-mcp vs mcp-redis
Side-by-side comparison to help you pick between these two MCP servers.
datagouv-mcp by datagouv | mcp-redis by redis | |
|---|---|---|
| Stars | ★ 1,460 | ★ 510 |
| 30d uses | — | — |
| Score | 55 | 54 |
| Official | — | — |
| Categories | AI / LLM ToolsDatabaseSearch | DatabaseAI / LLM ToolsDeveloper Tools |
| Language | Python | Python |
| 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.
mcp-redis · Summary
Official Redis MCP Server providing natural language interface for AI agents to manage Redis data efficiently.
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-redis · Use cases
- AI assistants storing and retrieving session data in Redis
- Vector search applications with Redis as the backend
- Chat applications using Redis pub/sub for real-time messaging
- Caching AI model responses and queries
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.pymcp-redis · Install
Installation
From PyPI (recommended)
{
"mcpServers": {
"RedisMCPServer": {
"command": "uvx",
"args": [
"--from",
"redis-mcp-server@latest",
"redis-mcp-server",
"--url",
"redis://localhost:6379/0"
]
}
}
}From GitHub
uvx --from git+https://github.com/redis/mcp-redis.git redis-mcp-server --url redis://localhost:6379/0Docker
docker run -d --name redis-mcp-server -e REDIS_HOST=<redis_hostname> -e REDIS_PORT=<redis_port> -e REDIS_USERNAME=<redis_username> mcp/redis