Brazilian Dev MCP
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| validar_cpfB | Valida se um CPF é válido e retorna o motivo da invalidez |
| gerar_cpfA | Gera um CPF válido aleatório |
| validar_cnpjA | Valida se um CNPJ é válido. Aceita formato numérico (antigo) e alfanumérico (novo). Detecta automaticamente o formato. |
| gerar_cnpjA | Gera um CNPJ válido aleatório. Use 'numerico' para o formato antigo ou 'alfanumerico' para o novo. |
| validar_cepA | Valida se um CEP é válido. Aceita formato com traço (12345-678) ou apenas números (12345678). |
| consultar_cepA | Consulta endereço pelo CEP na API ViaCEP. Aceita formato com traço (12345-678) ou apenas números (12345678). |
| consultar_cotacaoA | Consulta a cotação de uma moeda em relação ao Real (BRL), Dólar (USD) e Euro (EUR) usando a API AwesomeAPI. Use código de 3 letras (ex: USD, EUR, BTC, ARS). |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 7 tools
Each tool has a distinct purpose: CPF/CNPJ validation vs generation, CEP validation vs address lookup, and currency quote fetching. No two tools overlap in function.
All tools follow a consistent verb_noun pattern in Portuguese (validator, gerar, consultar) with lowercase snake_case, making the naming predictable and uniform.
With 7 tools, the server is well-scoped for its focused domain of Brazilian document/CEP utilities and currency quotes. Each tool earns its place without being excessive.
The server covers the core lifecycle for its domain: validate and generate CPF/CNPJ, validate and consult CEP, and fetch currency quotes. There are no obvious missing operations for the stated purpose.