Server data from the Official MCP Registry
Brazilian tools for agents: Pix codes, CEP, CNPJ + web capture and PDF. Pay per call.
Brazilian tools for agents: Pix codes, CEP, CNPJ + web capture and PDF. Pay per call.
This is a well-structured MCP server for Brazilian financial and document tools with solid security practices. Authentication is properly handled through x402 protocol with EVM private key signing, credentials are stored in environment variables rather than hardcoded, and input validation is enforced via Zod schemas. The server appropriately uses network access for its stated purpose and includes proper error handling for payment failures. Supply chain analysis found 1 known vulnerability in dependencies (0 critical, 1 high severity). Package verification found 1 issue.
4 files analyzed · 6 issues found
Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.
This plugin requests these system permissions. Most are normal for its category.
Set these up before or after installing:
Environment variable: EVM_PRIVATE_KEY
Environment variable: MINIFRAME_API_URL
Add this to your MCP configuration file:
{
"mcpServers": {
"io-github-edsonvmendes-miniframe-tools": {
"env": {
"EVM_PRIVATE_KEY": "your-evm-private-key-here",
"MINIFRAME_API_URL": "your-miniframe-api-url-here"
},
"args": [
"-y",
"miniframe-tools-mcp"
],
"command": "npx"
}
}
}From the project's GitHub README.
The Brazilian toolkit for AI agents — plus the web and document work agents can't do inside a sandbox.
Ask your agent to generate a Pix payment code, resolve a CEP to a full address, or pull a company's record from the CNPJ registry. Point it at a JavaScript-heavy page and get clean Markdown, a screenshot or a PDF back.
A CNPJ lookup costs $0.01 — billed per call, with no monthly plan, no contract and no minimum, which is unusual for Brazilian data APIs.
Each tool maps to an HTTP endpoint of the same service:
| Tool | Endpoint |
|---|---|
pix_brcode | POST /pix/brcode |
cep_lookup | POST /cep |
cnpj_lookup | POST /cnpj |
url_to_markdown | POST /url-to-markdown |
screenshot_url | POST /screenshot |
url_to_pdf | POST /url-to-pdf |
compress_pdf | POST /compress-pdf |
Brazilian sources, handled properly. CEP lookups hit BrasilAPI first and fall back to ViaCEP automatically, so a single upstream outage doesn't break your agent. Both sources come back through one normalized, English-keyed shape — your prompt never has to know which one answered.
Pix codes built to spec, locally. The BR Code follows the Central Bank's EMV layout, CRC16 and all, generated on our side with no third-party payment provider in the path. The key you send is used to build the code and is not stored.
Privacy taken seriously. CNPJ responses carry the company record — legal name, trade name, status, main activity, address — with personal fields left out by design.
Rendering that doesn't become an attack surface. The web tools run real Chromium, so JavaScript pages resolve, and they refuse private and internal addresses (SSRF guard) before a page is ever loaded.
Nothing to install for the hard parts. Ghostscript and a headless browser are the kind of dependency an agent sandbox doesn't have and can't install. That is exactly what this is for — anything an agent already does well on its own (parsing a CSV, reading a spreadsheet) is not sold here.
Works with Claude Desktop, Claude Code, Cursor, Windsurf, Cline and any MCP client.
{
"mcpServers": {
"miniframe-tools": {
"command": "npx",
"args": ["-y", "miniframe-tools-mcp"],
"env": {
"EVM_PRIVATE_KEY": "0xyour_private_key"
}
}
}
}
Restart the client and the seven tools appear. Then just ask:
"Generate a Pix code for R$ 50 to key
abc@example.com, name Maria Silva, city Recife""What's the address for CEP 01310-100?"
"Look up CNPJ 00.000.000/0001-91 and tell me if the company is active"
"Turn https://example.com into Markdown so I can summarise it"
No MCP needed — every tool is a normal endpoint:
curl -i -X POST https://tools.miniframe.com.br/cep \
-H "Content-Type: application/json" \
-d '{"cep":"01310100"}'
Calls are billed per request in USDC on Base, using the
x402 protocol: the endpoint answers 402 with the price, your
client signs the payment and repeats the request. Most agent runtimes handle this
for you.
For MCP, set EVM_PRIVATE_KEY to a wallet funded with a few dollars of USDC — use a
dedicated low-balance wallet, never your main one. The key stays on your machine and
signs locally; it is never sent to the API.
| Variable | Required | Default |
|---|---|---|
EVM_PRIVATE_KEY | yes | — |
MINIFRAME_API_URL | no | https://tools.miniframe.com.br |
Over plain HTTP, wrap your client with any x402 library — see
examples/ for a runnable Node script.
MIT
Be the first to review this server!
by Modelcontextprotocol · Developer Tools
Web content fetching and conversion for efficient LLM usage
by Toleno · Developer Tools
Toleno Network MCP Server — Manage your Toleno mining account with Claude AI using natural language.
by mcp-marketplace · Developer Tools
Create, build, and publish Python MCP servers to PyPI — conversationally.