MCP Dev Brasil

v0.1.0Business Applicationsstable

37 MCP servers for agentic commerce and Brazilian services. Covers Stripe ACP, x402 (Coinbase), AP2 (Google), Google UCP, plus 14 traditional Brazilian payment rails, fiscal, banking, communication, logistics, ERP, identity, and crypto APIs. ~480 too

mcp-dev-brasilmcpai-integration
Share:
248
Stars
0
Downloads
0
Weekly
0/5

What is MCP Dev Brasil?

MCP Dev Brasil is a Model Context Protocol (MCP) server that allows AI assistants like Claude, Cursor, and VS Code to 37 mcp servers for agentic commerce and brazilian services. covers stripe acp, x402 (coinbase), ap2 (google), google ucp, plus 14 traditional brazilian payment rails, fiscal, banking, communication, l...

37 MCP servers for agentic commerce and Brazilian services. Covers Stripe ACP, x402 (Coinbase), AP2 (Google), Google UCP, plus 14 traditional Brazilian payment rails, fiscal, banking, communication, logistics, ERP, identity, and crypto APIs. ~480 too

This server falls under the Business Applications category on MCPgee, the world's largest MCP server directory with 33,000+ servers.

Features

  • 37 MCP servers for agentic commerce and Brazilian services.

Use Cases

Access 37 MCP servers for Brazilian commerce and payments.
Integrate Stripe, Coinbase, Google Pay, and local Brazilian payment rails.
codespar

Maintainer

LicenseMIT License
Languagejavascript
Versionv0.1.0
UpdatedMay 18, 2026
Statushealthy
Maintenanceactive

Works with

ClaudeOpenAIwindowsmacoslinux

Installation

NPM

npx -y @codespar/mcp-afip

Manual Installation

npx -y @codespar/mcp-afip

Configuration

Configuration Details

Config File

claude_desktop_config.json

Performance

Response Metrics

Response Time< 200ms
ThroughputMedium

Resource Usage

Memory UsageLow
CPU UsageLow

How to Set Up and Use MCP Dev Brasil

MCP Dev LATAM is a comprehensive catalog of MCP servers purpose-built for Brazilian and Latin American commerce, payments, and government services. It covers agentic payment protocols like Stripe ACP, Coinbase x402, Google UCP, and AP2, alongside over 40 local payment providers such as Asaas, Mercado Pago, and Zoop, plus banking, fiscal, logistics, and communication APIs. Developers building AI agents that transact in Brazil or interact with Brazilian government systems — CNPJ lookups, NFe fiscal notes, CEP postal codes — will find ready-made MCP servers that handle authentication and API complexity out of the box.

Prerequisites

  • Node.js 18 or newer installed
  • API key or OAuth credentials for the specific Brazilian provider you want to use (e.g., STRIPE_API_KEY, ASAAS_API_KEY)
  • An MCP client such as Claude Desktop, Cursor, or Cline
  • For alpha/bank servers (Itaú, Bradesco, Santander): a signed provider contract to obtain OAuth2 credentials
1

Choose your MCP server package

The catalog exposes each provider as a separate npm package under the @codespar scope. Identify which service you need — for example @codespar/mcp-brasil-api for free public data (CEP, CNPJ), @codespar/mcp-asaas for the Asaas payment gateway, or @codespar/mcp-stripe-acp for Stripe's agentic commerce protocol.

# No-auth public server (try immediately):
npx @codespar/mcp-brasil-api

# Payment gateway server:
npx @codespar/mcp-asaas

# Alpha bank servers require @alpha tag:
npx @codespar/mcp-itau@alpha
2

Obtain API credentials for your provider

Most providers require an API key obtained from their developer dashboard. Public servers like BrasilAPI require no credentials. For agentic protocol servers such as x402 (Coinbase) or UCP (Google), follow the respective provider's onboarding to get your key.

3

Add the server to your MCP client configuration

Open your Claude Desktop config file at ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows) and add an entry for each server you want to use.

{
  "mcpServers": {
    "brasil-api": {
      "command": "npx",
      "args": ["-y", "@codespar/mcp-brasil-api"]
    },
    "asaas": {
      "command": "npx",
      "args": ["-y", "@codespar/mcp-asaas"],
      "env": {
        "ASAAS_API_KEY": "your-api-key",
        "ASAAS_SANDBOX": "true"
      }
    },
    "stripe-acp": {
      "command": "npx",
      "args": ["-y", "@codespar/mcp-stripe-acp"],
      "env": {
        "STRIPE_API_KEY": "sk_test_..."
      }
    }
  }
}
4

Run a server in HTTP transport mode for remote or cloud deployment

Any server in the catalog can be launched as an HTTP endpoint that exposes /mcp (Streamable HTTP) and /health endpoints. This is useful for integrating with cloud-hosted AI agents or self-hosted orchestration pipelines.

# Run as HTTP server:
npx @codespar/mcp-asaas --http
# or via environment variable:
MCP_HTTP=true npx @codespar/mcp-asaas
5

Restart your MCP client and verify the connection

Restart Claude Desktop (or your chosen client) so it picks up the updated config. The server will launch on demand when you start a conversation. You can verify it is working by asking Claude to look up a CNPJ or postal code.

MCP Dev Brasil Examples

Client configuration

Example claude_desktop_config.json showing the BrasilAPI (no auth) and Asaas payment servers running side by side.

{
  "mcpServers": {
    "brasil-api": {
      "command": "npx",
      "args": ["-y", "@codespar/mcp-brasil-api"]
    },
    "asaas": {
      "command": "npx",
      "args": ["-y", "@codespar/mcp-asaas"],
      "env": {
        "ASAAS_API_KEY": "your-api-key",
        "ASAAS_SANDBOX": "true"
      }
    }
  }
}

Prompts to try

Example prompts that exercise the Brazilian service MCP servers once connected.

- "Look up CNPJ 00.000.000/0001-91 and tell me the company's registered address."
- "What is the current address for postal code 01310-100?"
- "Create a new Asaas customer named João Silva with email [email protected]."
- "Generate a Stripe checkout session for R$199,90 using the ACP protocol."
- "What banking institutions are registered with the Banco Central do Brasil?"

Troubleshooting MCP Dev Brasil

npx command fails with '404 Not Found' for an alpha package

Alpha bank servers (Itaú, Bradesco, Santander) are contract-gated. You must have a signed provider agreement and be whitelisted before the package resolves. Use @codespar/mcp-brasil-api for free public data in the meantime.

ASAAS_API_KEY authentication errors

Verify that ASAAS_SANDBOX is set to 'true' when using a sandbox key, and 'false' (or omitted) for production keys. Sandbox and production keys are not interchangeable and will return 401 if mixed.

Server starts but Claude cannot see the tools

Fully restart Claude Desktop after editing claude_desktop_config.json — reloading the window is not sufficient. Also confirm the JSON is valid (no trailing commas) using a JSON linter, as a parse error silently prevents all servers from loading.

Frequently Asked Questions about MCP Dev Brasil

What is MCP Dev Brasil?

MCP Dev Brasil is a Model Context Protocol (MCP) server that 37 mcp servers for agentic commerce and brazilian services. covers stripe acp, x402 (coinbase), ap2 (google), google ucp, plus 14 traditional brazilian payment rails, fiscal, banking, communication, logistics, erp, identity, and crypto apis. ~480 too It connects AI assistants to external tools and data sources through a standardized interface.

How do I install MCP Dev Brasil?

Install via npm with the command: npx -y @codespar/mcp-afip. Then add the server configuration to your AI client's JSON config file (e.g., claude_desktop_config.json or .cursor/mcp.json).

Which AI clients work with MCP Dev Brasil?

MCP Dev Brasil works with all major MCP-compatible AI clients including Claude Desktop, Claude Code, Cursor, VS Code (GitHub Copilot), Windsurf, and Cline.

Is MCP Dev Brasil free to use?

Yes, MCP Dev Brasil is open source and available under the MIT License license. You can use it freely in both personal and commercial projects.

MCP Dev Brasil Alternatives — Similar Business Applications Servers

Looking for alternatives to MCP Dev Brasil? Here are other popular business applications servers you can use with Claude, Cursor, and VS Code.

n8n

189.1k

A comprehensive MCP server that provides full control over n8n automation workflows through natural language. It offers 43 tools for managing workflows, executions, credentials, and data tables, with safety features like write-mode protection and dou

LobeHub

77.5k

🤯 LobeHub is your Chief Agent Operator, organizing your agents into 7×24 operations by hiring, scheduling, and reporting on your entire AI team.

Jeecgboot

46.4k

AI 低代码平台,「低代码 + 零代码」双模式驱动:低代码一键生成前后端代码,零代码 5 分钟搭建系统,AI Skills 一句话画流程、设计表单、生成整套系统。内置 AI聊天、知识库、流程编排、MCP插件等,兼容主流大模型。引领「AI 生成 → 在线配置 → 代码生成 → 手工合并->AI修改」开发模式,消除 Java 项目 80% 的重复工作,提效而不失灵活。

CowAgent

44.7k

CowAgent (chatgpt-on-wechat) 是基于大模型的超级AI助理,能主动思考和任务规划、访问操作系统和外部资源、创造和执行Skills、通过长期记忆和知识库不断成长,比OpenClaw更轻量和便捷。同时支持微信、飞书、钉钉、企微、QQ、公众号、网页等接入,可选择DeepSeek/OpenAI/Claude/Gemini/ MiniMax/Qwen/GLM/LinkAI,能处理文本、语音、图片和文件,可快速搭建个人AI助理和企业数字员工。

Minds Platform

39.2k

Platform dedicated to building an open foundation for applied Artificial Intelligence, designed for people seeking production-ready AI systems they can truly control, extend and deploy anywhere.

Astrbot

32.8k

AI Agent Assistant & development framework that integrates lots of IM platforms, LLMs, plugins and AI feature, and can be your openclaw alternative. ✨

Browse More Business Applications MCP Servers

Explore all business applications servers available in the MCPgee directory. Each server includes setup guides for Claude, Cursor, and VS Code.

Quick Config Preview

{ "mcpServers": { "mcp-dev-brasil": { "command": "npx", "args": ["-y", "@codespar/mcp-afip"] } } }

Add this to your claude_desktop_config.json or .cursor/mcp.json

Read the full setup guide →

Ready to use MCP Dev Brasil?

Browse our complete directory of 33,000+ MCP servers, read setup guides for your editor, and start building with the Model Context Protocol.

33,000+ ServersFree & Open SourceStep-by-Step Guides