mcp-brasil vs everything
Side-by-side comparison to help you pick between these two MCP servers.
mcp-brasil by Mcp-Brasil | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 1,561 | ★ 85,748 |
| 30d uses | — | — |
| Score | 56 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsDeveloper ToolsDatabase | Developer ToolsAI / LLM ToolsOther |
| 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.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
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
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
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.
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