mcp-brasil vs mongodb-mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
mcp-brasil by Mcp-Brasil | mongodb-mcp-server by mongodb-js | |
|---|---|---|
| Stars | ★ 1,561 | ★ 1,023 |
| 30d uses | — | — |
| Score | 56 | 55 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsDatabase | DatabaseDeveloper ToolsCloud Storage |
| Language | Python | TypeScript |
| 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.
mongodb-mcp-server · Summary
MongoDB MCP Server connects to MongoDB databases and Atlas clusters, offering tools for database operations and Atlas management.
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
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
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.
mongodb-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"
]
}
}
}