ddd-info
Retrieve state and city information for any Brazilian area code (DDD) using this tool. Input a 2-digit DDD to instantly access accurate location data via the Brasil API MCP server.
Instructions
Get information about a Brazilian area code (DDD) including state and cities
Input Schema
Name | Required | Description | Default |
---|---|---|---|
ddd | Yes | Area code (DDD) to be queried (only numbers, 2 digits) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"ddd": {
"description": "Area code (DDD) to be queried (only numbers, 2 digits)",
"pattern": "^\\d{2}$",
"type": "string"
}
},
"required": [
"ddd"
],
"type": "object"
}