mcp-brasil vs mcp-redis
Side-by-side comparison to help you pick between these two MCP servers.
mcp-brasil by Mcp-Brasil | mcp-redis by redis | |
|---|---|---|
| Stars | ★ 1,561 | ★ 510 |
| 30d uses | — | — |
| Score | 56 | 54 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsDatabase | DatabaseAI / LLM ToolsDeveloper Tools |
| Language | Python | Python |
| Last commit | 1 mo ago | this month |
mcp-brasil · Summary
Comprehensive MCP server providing access to 70 Brazilian public APIs with 533 tools for various government data sources.
mcp-redis · Summary
Official Redis MCP Server providing natural language interface for AI agents to manage Redis data efficiently.
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
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
mcp-brasil · Install
Install with pip or uv:
pip install mcp-brasil
uv add mcp-brasilFor 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.
mcp-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