MCP Catalogs
Home

dbhub vs mcp-brasil

Side-by-side comparison to help you pick between these two MCP servers.

dbhub
by bytebase
mcp-brasil
by Mcp-Brasil
Stars★ 2,769★ 1,561
30d uses
Score5756
Official
Categories
DatabaseDeveloper ToolsOps & Infra
AI / LLM ToolsDeveloper ToolsDatabase
LanguageTypeScriptPython
Last commit1 mo ago1 mo ago

dbhub · Summary

A zero-dependency MCP server connecting to multiple databases with token-efficient SQL tools.

mcp-brasil · Summary

Comprehensive MCP server providing access to 70 Brazilian public APIs with 533 tools for various government data sources.

dbhub · Use cases

  • Database exploration and schema inspection for developers
  • Secure SQL query execution with safety controls in CI/CD pipelines
  • Multi-database management and operations through a unified interface

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

dbhub · Install

Installation

**Docker:**

docker run --rm --init \   --name dbhub \   --publish 8080:8080 \   bytebase/dbhub \   --transport http \   --port 8080 \   --dsn "postgres://user:password@localhost:5432/dbname?sslmode=disable"

**NPM:**

npx @bytebase/dbhub@latest --transport http --port 8080 --dsn "postgres://user:password@localhost:5432/dbname?sslmode=disable"

**Demo Mode:**

npx @bytebase/dbhub@latest --transport http --port 8080 --demo

Claude Desktop Configuration

Add the following to your Claude Desktop configuration:

{
  "mcpServers": {
    "dbhub": {
      "command": "npx",
      "args": ["@bytebase/dbhub@latest", "--transport", "stdio"]
    }
  }
}

mcp-brasil · Install

Install with pip or uv:

pip install mcp-brasil
uv add mcp-brasil

For 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.

Comparison generated from public README + GitHub signals. Last updated automatically.