Brazilian tools for agents: Pix codes, CEP, CNPJ + web capture and PDF. Pay per call.
Most developer tooling work still happens through a UI a human drives. Miniframe MCP server moves it into the conversation instead. Brazilian tools for agents: Pix codes, CEP, CNPJ + web capture and PDF. Pay per call.
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.
Setup follows the usual MCP pattern — install or clone the server, register it in your client's configuration file, restart the client. The configuration blocks on this page cover the common clients.
The server publishes 11 tools. What each one is for:
API — ** https://tools.miniframe.com.brMachine — readable spec:** openapi.json · llms.txtpix_brcode — Generate a Brazilian Pix payment code (BR Code / "Copia e Cola" string) plus a QR PNG. $0.01 per callcep_lookup — Resolve a Brazilian postal code (CEP) to a full street address. $0.005 per callcnpj_lookup — Look up a Brazilian company by its CNPJ number in the public registry. $0.01 per callempresa_profile — Consolidated Brazilian company profile to qualify a lead: registry + address completed via CEP + derived flags (active, headquarters, ageurl_to_markdown — Fetch a JavaScript-rendered web page and return clean Markdown for an LLM. $0.02 per callscreenshot_url — Take a screenshot of a web page and return it as PNG or JPEG. $0.03 per callurl_to_pdf — Render a web page as a PDF. $0.03 per callextract — Extract the structured data a page exposes (JSON-LD, Open Graph, meta, tables, links) plus any fields you pass as CSS selectors. $0.02 per callcompress_pdf — Compress a PDF file with Ghostscript. $0.02 per callConfiguration is passed through the environment: EVM_PRIVATE_KEY, MINIFRAME_API_URL. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.
Plenty of developer tooling servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. Miniframe's toolset — API, Machine, pix_brcode and 8 more — is a fair guide to whether it matches your workflow. It is maintained by edsonvmendes; worth a glance at recent repository activity before you build anything load-bearing on it.
SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.
| Tool | What it does |
|---|---|
| API | ** https://tools.miniframe.com.br |
| Machine | readable spec:** [openapi.json](https://tools.miniframe.com.br/openapi.json) · [llms.txt](https://tools.miniframe.com.br/llms.txt) |
| pix_brcode | Generate a Brazilian Pix payment code (BR Code / "Copia e Cola" string) plus a QR PNG. $0.01 per call. |
| cep_lookup | Resolve a Brazilian postal code (CEP) to a full street address. $0.005 per call. |
| cnpj_lookup | Look up a Brazilian company by its CNPJ number in the public registry. $0.01 per call. |
| empresa_profile | Consolidated Brazilian company profile to qualify a lead: registry + address completed via CEP + derived flags (active, headquarters, age, MEI/Simples, size, risk). $0.02 per call. |
| url_to_markdown | Fetch a JavaScript-rendered web page and return clean Markdown for an LLM. $0.02 per call. |
| screenshot_url | Take a screenshot of a web page and return it as PNG or JPEG. $0.03 per call. |
| url_to_pdf | Render a web page as a PDF. $0.03 per call. |
| extract | Extract the structured data a page exposes (JSON-LD, Open Graph, meta, tables, links) plus any fields you pass as CSS selectors. $0.02 per call. |
| compress_pdf | Compress a PDF file with Ghostscript. $0.02 per call. |
{
"mcpServers": {
"miniframe-tools": {
"command": "npx",
"args": ["-y", "miniframe-tools-mcp"],
"env": {
"EVM_PRIVATE_KEY": "0xyour_private_key"
}
}
}
}Configuration as documented by the project. Restart the client after saving.
| Variable | Description | Required |
|---|---|---|
| EVM_PRIVATE_KEY | Credential the server authenticates with. | Yes |
| MINIFRAME_API_URL | Endpoint or connection string the server talks to. | Yes |
Kill hallucinated APIs — version-accurate, up-to-date library documentation injected straight into context.
Microsoft's official browser automation server — drive a real browser through the accessibility tree, no screenshots needed.
GitHub's official server — repos, issues, pull requests, Actions and code security, straight from your assistant.
Issue tracking at the speed of conversation — Linear's official hosted server with OAuth and zero install.
Local repository surgery — status, diffs, commits, branches and history for any repo on disk.
Timezone sanity for AI — current time anywhere and correct conversions, without the model doing date math.