cnpj-search
Retrieve detailed information about Brazilian companies using their CNPJ (National Registry of Legal Entities) through the Brasil API MCP server.
Instructions
Query information about a Brazilian company by its CNPJ (National Registry of Legal Entities)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
cnpj | Yes | CNPJ to be queried (only numbers, 14 digits) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"cnpj": {
"description": "CNPJ to be queried (only numbers, 14 digits)",
"pattern": "^\\d{14}$",
"type": "string"
}
},
"required": [
"cnpj"
],
"type": "object"
}