Miniframe MCP Server

Brazilian tools for agents: Pix codes, CEP, CNPJ + web capture and PDF. Pay per call.

Local serverstdio

What is the Miniframe MCP server?

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.

The short version

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.

Getting it running

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 tools it exposes

The server publishes 11 tools. What each one is for:

  • API — ** https://tools.miniframe.com.br
  • Machine — readable spec:** openapi.json · 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
  • 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

What it needs from you

Configuration 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.

Things to watch

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • With 11 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch Miniframe.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

How it compares

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.

Available tools

ToolWhat it does
API** https://tools.miniframe.com.br
Machinereadable spec:** [openapi.json](https://tools.miniframe.com.br/openapi.json) · [llms.txt](https://tools.miniframe.com.br/llms.txt)
pix_brcodeGenerate a Brazilian Pix payment code (BR Code / "Copia e Cola" string) plus a QR PNG. $0.01 per call.
cep_lookupResolve a Brazilian postal code (CEP) to a full street address. $0.005 per call.
cnpj_lookupLook up a Brazilian company by its CNPJ number in the public registry. $0.01 per call.
empresa_profileConsolidated 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_markdownFetch a JavaScript-rendered web page and return clean Markdown for an LLM. $0.02 per call.
screenshot_urlTake a screenshot of a web page and return it as PNG or JPEG. $0.03 per call.
url_to_pdfRender a web page as a PDF. $0.03 per call.
extractExtract 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_pdfCompress a PDF file with Ghostscript. $0.02 per call.

How to install the Miniframe MCP server

{
  "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.

Configuration

VariableDescriptionRequired
EVM_PRIVATE_KEYCredential the server authenticates with.Yes
MINIFRAME_API_URLEndpoint or connection string the server talks to.Yes

Example prompts to try

  • Use Miniframe to API.
  • Use Miniframe to Machine.
  • Use Miniframe to pix brcode.

Frequently asked questions

It connects Miniframe to MCP-compatible AI assistants such as Claude and Cursor, exposing 11 tools (API, Machine, pix_brcode, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Miniframe directly.