get_cnpj
Retrieve company details using a CNPJ number with the Brasil-API MCP Server. Streamline business verification and data integration for applications.
Instructions
Get information about a company given a CNPJ.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
CNPJ | Yes | The CNPJ to query |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"CNPJ": {
"description": "The CNPJ to query",
"type": "string"
}
},
"required": [
"CNPJ"
],
"type": "object"
}