airtable-mcp-server vs mcp-brasil
Side-by-side comparison to help you pick between these two MCP servers.
airtable-mcp-server by domdomegg | mcp-brasil by Mcp-Brasil | |
|---|---|---|
| Stars | ★ 444 | ★ 1,561 |
| 30d uses | — | — |
| Score | 53 | 56 |
| Official | — | — |
| Categories | DatabaseProductivityDeveloper Tools | AI / LLM ToolsDeveloper ToolsDatabase |
| Language | TypeScript | Python |
| Last commit | this month | 1 mo ago |
airtable-mcp-server · Summary
A comprehensive MCP server enabling AI systems to interact with Airtable databases through read and write operations.
mcp-brasil · Summary
Comprehensive MCP server providing access to 70 Brazilian public APIs with 533 tools for various government data sources.
airtable-mcp-server · Use cases
- Automating data entry and updates in Airtable through AI assistants
- Building intelligent data pipelines that connect Airtable with other systems
- Enabling AI-powered analysis and reporting on Airtable datasets
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
airtable-mcp-server · Install
Installation
**Step 1**: [Create an Airtable personal access token](https://airtable.com/create/tokens/new)
- Name: e.g. 'Airtable MCP Server Token'
- Scopes:
schema.bases:read,data.records:read, and optionallyschema.bases:write,data.records:write
**Step 2**: Configure Claude Desktop by adding to claude_desktop_config.json:
{
"mcpServers": {
"airtable": {
"command": "npx",
"args": [
"-y",
"airtable-mcp-server"
],
"env": {
"AIRTABLE_API_KEY": "pat123.abc123",
}
}
}
}Restart Claude Desktop after saving.
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.