mcp-dev-brasil

mcp-dev-brasil

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 tools. Supports stdio and Streamable HTTP.

Category
访问服务器

README

<p align="center"> <h1 align="center">MCP Dev LATAM 🌎</h1> <p align="center"> <strong>Every API your AI agent needs to run a business in Latin America.</strong><br> <em>Brazil 🇧🇷 · Mexico 🇲🇽 · Argentina 🇦🇷 · Colombia 🇨🇴 — plus 4 agentic payment protocols.</em> </p> <p align="center"> 57 MCP servers · 453 tools · 4 countries · MIT License </p> <p align="center"> <a href="https://codespar.dev/mcp">Landing Page</a> · <a href="#quick-start">Quick Start</a> · <a href="#agentic-payment-protocols">Agentic Protocols</a> · <a href="#countries">Countries</a> · <a href="#servers">All Servers</a> · <a href="docs/CONTRIBUTING.md">Contribute</a> </p> <p align="center"> <a href="https://opensource.org/licenses/MIT"><img src="https://img.shields.io/badge/License-MIT-blue.svg" alt="License: MIT"></a> <img src="https://img.shields.io/badge/servers-57-green" alt="57 servers"> <img src="https://img.shields.io/badge/tools-453-orange" alt="453 tools"> <img src="https://img.shields.io/badge/countries-4-blue" alt="4 countries"> <img src="https://img.shields.io/badge/MCP-compatible-purple" alt="MCP compatible"> </p> </p>


The Problem

AI agents can write code, analyze data, and chat. But they can't operate a business — collect payments, issue invoices, ship products, or notify customers. Especially not in Brazil, where every service has its own API, auth pattern, and quirks.

Meanwhile, five categories of agentic payment infrastructure are shipping in parallel — checkout protocols, authorization layers, micropayment rails, identity frameworks, and issuing tools — and none of them compose cleanly.

MCP Dev Brasil bridges both gaps. Traditional Brazilian services + the new agentic payment protocols, all accessible through a single MCP interface.

The Solution

MCP Brasil gives AI agents typed tools to interact with Brazilian APIs and agentic payment protocols. Each server wraps a real service — payments, fiscal, logistics, messaging, banking, ERP, crypto, and now agentic protocols — so your agent can operate a complete business workflow.

🛒 Customer places order
  → 💳 Agent charges via Pix (Zoop)
  → 📄 Agent issues NFe (Nuvem Fiscal)
  → 📦 Agent generates shipping label (Melhor Envio)
  → 📱 Agent sends tracking via WhatsApp (Z-API)
  → 📊 Agent records in ERP (Omie)
  → 🏦 Agent reconciles balance (Stark Bank)

Six systems. Zero human intervention. One agent.


Agentic Payment Protocols

"The bridge looks more like middleware than a protocol." — The middleware is MCP.

Three new servers that bridge the emerging agentic payment stack:

Protocol Server Tools What it does
Google UCP @codespar/mcp-ucp 21 Universal Commerce Protocol — agentic shopping, cart, checkout, orders, delivery, identity. Google's full commerce stack for AI agents.
Stripe ACP @codespar/mcp-stripe-acp 16 Agentic Commerce Protocol — AI agent checkout, payment delegation, products, invoices. Live in ChatGPT with 1M+ Shopify merchants.
x402 @codespar/mcp-x402 10 HTTP-native micropayments by Coinbase — when an agent hits a 402, it pays USDC on Base/Solana and retries. Pure HTTP, no checkout UI.
AP2 @codespar/mcp-ap2 13 Google's Agent-to-Agent Payment Protocol — authorization, audit trails, scoped spend limits. 60+ partners including Visa, Mastercard, Stripe, PayPal.

The Autonomy Spectrum

Each protocol sits at a different level of agent autonomy:

 Human-in-loop ◄──────────────────────────────► Fully autonomous

  ┌─────────┐   ┌─────────┐   ┌─────────┐   ┌─────────┐
  │   ACP   │   │   UCP   │   │   AP2   │   │   x402  │
  │ Stripe  │   │ Google  │   │ Google  │   │Coinbase │
  └─────────┘   └─────────┘   └─────────┘   └─────────┘
  User confirms   Commerce     User sets      No user.
  every purchase  lifecycle    rules, agent   Machine-to-
  in-chat         managed      acts within    machine at
                  by agent     budget/scope   HTTP layer

The Convergence Stack

These protocols aren't competing — they're converging into layers:

┌─────────────────────────────────────────────┐
│  Application Layer        ACP / UCP         │  Chat UX, product discovery
├─────────────────────────────────────────────┤
│  Authorization Layer      AP2 / Mandates    │  Spend limits, audit trails
├─────────────────────────────────────────────┤
│  Tool Layer               MCP  ◄── WE ARE  │  Standardized agent tools
├─────────────────────────────────────────────┤
│  Settlement Layer         x402 / Pix / Card │  On-chain or traditional rails
└─────────────────────────────────────────────┘

CodeSpar sits at the Tool Layer — the middleware that connects every application, authorization, and settlement protocol through one interface.

Why this matters

Agent needs to buy something
  ├── Full commerce?       → Google UCP (search → cart → checkout → delivery)
  ├── Retail checkout?     → Stripe ACP (create_checkout → complete_checkout)
  ├── API micropayment?    → x402 (pay_request → USDC $0.001 → data returned)
  ├── Agent-to-agent?      → AP2 (authorize_payment → execute_payment)
  └── Brazilian merchant?  → Asaas / Zoop / PagSeguro (traditional rails)

All via MCP. Same interface. One agent.

Quick Start — Agentic Protocols

# Google UCP — full agentic commerce (early access)
npx @codespar/mcp-ucp

# Stripe ACP — agentic checkout (test mode, free)
npx @codespar/mcp-stripe-acp

# x402 — HTTP micropayments (testnet, free)
npx @codespar/mcp-x402

# AP2 — agent authorization (early access)
npx @codespar/mcp-ap2

Quick Start

With Claude Desktop

Add to ~/.config/claude/claude_desktop_config.json:

{
  "mcpServers": {
    "stripe-acp": {
      "command": "npx",
      "args": ["-y", "@codespar/mcp-stripe-acp"],
      "env": {
        "STRIPE_API_KEY": "sk_test_..."
      }
    },
    "zoop": {
      "command": "npx",
      "args": ["-y", "@codespar/mcp-zoop"],
      "env": {
        "ZOOP_API_KEY": "your-api-key",
        "ZOOP_MARKETPLACE_ID": "your-marketplace-id"
      }
    }
  }
}

With any MCP client

npx @codespar/mcp-stripe-acp   # Agentic Commerce Protocol
npx @codespar/mcp-x402         # HTTP micropayments
npx @codespar/mcp-ap2          # Agent authorization
npx @codespar/mcp-zoop         # Payments (marketplace, split)
npx @codespar/mcp-nuvem-fiscal # Fiscal
npx @codespar/mcp-melhor-envio # Logistics
npx @codespar/mcp-z-api        # WhatsApp
npx @codespar/mcp-omie         # ERP
npx @codespar/mcp-stark-bank   # Banking
npx @codespar/mcp-dev-brasil-api   # CEP, CNPJ (no key needed!)

Try it now (no API key)

BrasilAPI is free and public. Try it in your terminal:

npx @codespar/mcp-dev-brasil-api

Then ask your agent: "What is the address for CEP 01001-000?" or "Look up CNPJ 00.000.000/0001-91"


The Complete Loop

This is what makes MCP Brasil different — not individual connectors, but a complete business workflow across verticals:

Step Vertical Server What the agent does
1 💳 Payment Zoop Creates Pix charge, splits to sellers
2 📄 Fiscal Nuvem Fiscal Issues NFe/NFSe when payment confirmed
3 📦 Logistics Melhor Envio Quotes shipping, generates label
4 📱 Messaging Z-API Sends tracking code via WhatsApp
5 📊 ERP Omie Records order, updates inventory
6 🏦 Banking Stark Bank Reconciles balance, creates reports

To orchestrate all 6 steps with governance, approval workflows, and audit trails — use CodeSpar.


Servers

⚡ Agentic Protocols (4 servers)

Server Tools Description Auth
Google UCP 20 Universal Commerce Protocol — shopping, cart, checkout, orders, delivery, identity UCP API Key
Stripe ACP 16 Agentic Commerce Protocol — checkout sessions, payment delegation, products, invoices Stripe API Key
x402 10 HTTP micropayments — USDC on Base/Solana, paywalls, machine-to-machine Facilitator Key
AP2 13 Agent authorization, audit trails, scoped spend limits AP2 API Key

💳 Payments (13 servers)

Server Tools Description Auth
Asaas 24 Billing, Pix, boleto, subscriptions, transfers, refunds, notifications API Key
PagSeguro 13 Orders, charges, Pix QR, refunds, subscriptions, splits Bearer Token
iugu 8 Invoices, subscriptions, payment methods Basic Auth
Pix BCB 8 Official Central Bank Pix API (cob, DICT) OAuth2 + mTLS
Zoop 28 Marketplace payments, split rules, sellers, subscriptions, disputes, Pix Basic Auth
Pagar.me 10 Orders, charges, recipients, transfers Basic Auth
EBANX 7 Cross-border payments, payouts, FX rates Integration Key
EFÍ/Gerencianet 8 Pix, boleto, carnet, open finance OAuth2
Vindi 10 Recurring billing, subscriptions, invoices API Key
Cielo 13 Credit card, debit, boleto, Pix, recurrent payments Merchant Key
Stone 8 Open banking, payments, Pix, transfers OAuth2
Celcoin 8 Pix, boleto, transfers, bill payments, top-ups OAuth2
AP2 13 Google's Agent-to-Agent Payment Protocol AP2 API Key

📄 Fiscal (3 servers)

Server Tools Description Auth
Focus NFe 8 NFe/NFSe/NFCe emission and management Basic Auth
Nuvem Fiscal 15 NFe/NFSe/NFCe/CTe/MDFe, CNPJ/CEP lookup OAuth2
Conta Azul 10 Accounting, invoicing, customers, products OAuth2

📱 Communication (5 servers)

Server Tools Description Auth
Evolution API 15 WhatsApp automation (Baileys) API Key
Z-API 20 WhatsApp messaging, contacts, groups, labels Instance + Token
Zenvia 8 Multichannel (SMS, WhatsApp, RCS) API Token
RD Station 8 Marketing automation, CRM, leads Bearer Token
Take Blip 8 Chatbots, messaging, contacts, broadcasts Access Key

🇧🇷 Identity (1 server)

Server Tools Description Auth
BrasilAPI 15 CEP, CNPJ, banks, holidays, FIPE, DDD, IBGE, SELIC, weather None (free)

🏦 Banking (2 servers)

Server Tools Description Auth
Stark Bank 15 Transfers, boleto, invoices, Pix, balance, brcode, deposits Access Token
Open Finance 8 Open Finance Brasil — accounts, transactions, consents, investments OAuth2

📦 E-commerce / Logistics (3 servers)

Server Tools Description Auth
Melhor Envio 18 Shipping quotes, tracking, labels, cart, agencies Bearer Token
Correios 11 Tracking, shipping, collections, reverse logistics OAuth
VTEX 15 E-commerce, orders, products, inventory, categories, shipping App Key + Token

📊 ERP (3 servers)

Server Tools Description Auth
Omie 15 Customers, products, orders, invoices, services, purchases App Key + Secret
Bling 10 ERP, products, orders, invoices, stock management OAuth2
Tiny 10 ERP, products, orders, invoices, stock, accounts payable API Token

🪙 Crypto / Stablecoins (5 servers)

Server Tools Description Auth
x402 10 HTTP micropayments — USDC on Base/Solana Facilitator Key
UnblockPay 10 Fiat-to-stablecoin onramp/offramp, wallets, transfers API Key
Circle 10 USDC payments, wallets, payouts, transfers API Key
Mercado Bitcoin 10 Brazilian crypto exchange, trading, orderbook, withdrawals API Key + Secret
Bitso 10 Latin American crypto exchange, trading, funding, withdrawals API Key + Secret

🌎 LATAM-Wide (4 servers)

Server Tools Description Auth
Mercado Libre 14 LATAM marketplace (18 countries) — products, orders, sellers, shipments OAuth2
Mercado Pago 12 LATAM payments — cards, PIX, checkout, refunds Bearer Token
Nubank 10 Brazilian neobank via Open Finance — accounts, PIX, transactions OAuth2
Banco Inter 12 Brazilian digital bank — boleto, PIX, statements, transfers OAuth2

🇲🇽 Mexico (6 servers)

Server Tools Description Auth
Conekta 10 Payment gateway — cards, OXXO cash, SPEI Basic Auth
FacturAPI 10 CFDI e-invoicing (Mexican NFe) Bearer Token
STP/SPEI 8 Instant bank transfers (Mexico's PIX) API Key
Skydropx 10 Multi-carrier shipping (Estafeta, DHL, FedEx) Bearer Token
Bind ERP 10 Cloud ERP API Key
Belvo 10 Open Finance aggregator (MX/AR/CO) Basic Auth

🇦🇷 Argentina (5 servers)

Server Tools Description Auth
AFIP 8 Electronic invoicing (Factura Electrónica) Certificate
Andreani 8 Logistics/courier (largest in Argentina) JWT
Colppy 8 Cloud accounting + AFIP invoicing API Key
Tienda Nube 10 E-commerce platform (LATAM Shopify) Bearer Token
BCRA 6 Central Bank public data (exchange rates, free) None (free)

🇨🇴 Colombia (5 servers)

Server Tools Description Auth
Wompi 10 Payment gateway by Bancolombia (cards, PSE, Nequi) Bearer Token
Siigo 10 Accounting + DIAN e-invoicing Bearer Token
Nequi 6 Digital wallet (50M+ users) OAuth2
Coordinadora 8 Logistics/courier API Key
Alegra 10 Cloud accounting (cross-LATAM) Basic Auth

🔜 Coming Soon

Foxbit · BRLA · Coinbase · Transak · PagBrasil · Juno · NFe.io · PlugNotas · Movidesk · Infobip · Frenet · Loggi · Kangu · ReceitaWS · BigDataCorp · Sankhya · Totvs · Clip (MX) · Contpaqi (MX) · Ualá (AR) · Naranja X (AR) · Transbank (CL) · Nequi (CO expanded) · Rappi (CO)


Why MCP?

Model Context Protocol is the open standard for connecting AI agents to external tools. Instead of each agent building its own integrations, MCP provides a typed, discoverable interface that works with Claude, ChatGPT, Copilot, Cursor, and more.

AI Agent (Claude, ChatGPT, Cursor)
    ↕
MCP Server (this repo)
    ↕
Brazilian API / Agentic Protocol (Stripe ACP, x402, Zoop, etc.)

Each MCP server in this repo:

  • Exposes typed tools with input/output schemas
  • Handles authentication (OAuth, API keys, Basic Auth)
  • Supports dual transport — stdio (default) and Streamable HTTP (--http flag)
  • Compatible with Claude Managed Agents via MCP Connector
  • Supports sandbox mode for safe testing
  • Returns structured JSON responses

Running in HTTP mode

Any server can run as an HTTP server for remote/cloud use:

# stdio (default — local, Claude Desktop, Cursor)
npx @codespar/mcp-asaas

# HTTP (remote — Managed Agents, cloud deployments)
npx @codespar/mcp-asaas --http
# or
MCP_HTTP=true npx @codespar/mcp-asaas

HTTP mode exposes /mcp (Streamable HTTP) and /health (status check).


About CodeSpar

CodeSpar is an open source multi-agent platform that deploys autonomous AI coding agents to WhatsApp, Slack, Telegram, and Discord.

The MCP Generator in CodeSpar Enterprise can automatically generate MCP servers from API specifications — that's how this repo was bootstrapped.

Individual MCP servers are useful. Orchestrating many with governance is powerful. That's what CodeSpar does — including a Payment Gateway that integrates policy engine, payment routing, and mandate authorization across all rails.


Contributing

We welcome contributions! See CONTRIBUTING.md.

Want a server for a service not listed? Open an issue with the "server request" label.

License

MIT — use freely in commercial and open source projects.

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选
Neon MCP Server

Neon MCP Server

用于与 Neon 管理 API 和数据库交互的 MCP 服务器

官方
精选
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选