MCP Catalogs
Home

mcp-brasil vs filesystem

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

mcp-brasil
by Mcp-Brasil
filesystem
by modelcontextprotocol
Stars★ 1,561★ 85,748
30d uses
Score5677
Official
Categories
AI / LLM ToolsDeveloper ToolsDatabase
File SystemDeveloper ToolsProductivity
LanguagePythonTypeScript
Last commit1 mo agothis month

mcp-brasil · Summary

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

filesystem · Summary

A feature-rich MCP server for filesystem operations with dynamic directory access control.

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

filesystem · Use cases

  • Enable AI models to read and write project files during development
  • Allow Claude or other MCP clients to browse and analyze codebases
  • Provide secure sandboxed access to specific directories for content generation

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.

filesystem · Install

Installation

Using NPX

{
  "mcpServers": {
    "filesystem": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-filesystem",
        "/path/to/allowed/directory"
      ]
    }
  }
}

Using Docker

{
  "mcpServers": {
    "filesystem": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
        "mcp/filesystem",
        "/projects"
      ]
    }
  }
}

VS Code Extension

Click the installation buttons in the README to install directly in VS Code.

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