Moradas — Portuguese addresses & postal codes
Server Details
Autocomplete Portuguese addresses and look up postal codes (CP7). Free remote MCP, no API key.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
Available Tools
3 toolspostal_code_infoAInspect
Look up a Portuguese postal code (CP7, e.g. '1000-098'): localidade, concelho, distrito and the streets it covers.
| Name | Required | Description | Default |
|---|---|---|---|
| cp7 | Yes | Postal code NNNN-NNN |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the burden of disclosing behavior. It makes the read-only nature clear through 'Look up' and enumerates the returned fields, including that street coverage is part of the result. It doesn't cover invalid input behavior or response shape, but for a simple lookup the core behavior is transparent.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
One sentence front-loads the verb and resource, gives a concrete example, and lists the output fields. No filler or redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a one-parameter read-only lookup with no output schema, the description covers input format (with example) and output contents (place hierarchy and streets). The only gaps are lack of explicit differentiation from resolve_postal_code and any error/edge-case information, but the tool is otherwise self-explanatory.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% and the single cp7 parameter is already documented as 'Postal code NNNN-NNN'. The description adds only a concrete example and the CP7 term, which is helpful but does not substantially extend the schema's meaning.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description opens with a specific verb ('Look up') and names the resource (Portuguese postal code CP7 with an example), then lists the returned information (localidade, concelho, distrito, streets). It is clear and concrete, though it does not explicitly differentiate itself from the sibling resolve_postal_code.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The intended use is implied: use this when you have a CP7 like '1000-098' and want locality/district/street information. However, it gives no explicit when-to-use guidance, no prerequisites, and no comparison to resolve_postal_code or suggest_address.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
resolve_postal_codeAInspect
Resolve the exact 7-digit postal code (CP7) for a street and door number. art_id comes from suggest_address. Returns resolved address (or null) and the list of postal-code segments of that street.
| Name | Required | Description | Default |
|---|---|---|---|
| art_id | Yes | Street id from suggest_address | |
| numero | Yes | Door number, e.g. '196' or '27A' |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description correctly carries the behavioral disclosure burden. It states the return behavior, including the null case ('returns resolved address (or null)') and the additional list of postal-code segments. It does not mention side effects or auth, but this appears to be a simple lookup operation.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences with no fluff. The purpose is front-loaded, followed by input provenance and return behavior. Every sentence earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
This is a simple tool with two well-documented parameters and no output schema. The description covers the inputs, the expected result, the null case, and the additional segment list, making it complete for an agent to select and invoke correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already documents art_id and numero well. The description reinforces 'art_id comes from suggest_address' and the door-number concept, but adds little beyond the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description names a specific operation ('Resolve the exact 7-digit postal code') and a clear resource scope ('for a street and door number'). It also mentions that art_id comes from suggest_address, which helps distinguish this tool from the suggest-address and postal-code-info siblings.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear context by indicating that art_id is obtained from suggest_address, implying this is the follow-up step after address suggestion. It does not explicitly contrast with postal_code_info, but the intended use case is evident.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
suggest_addressAInspect
Autocomplete a Portuguese address or postal code. Pass free text (street, optionally locality and door number, e.g. 'av liberdade lisboa 196') or a postal code (e.g. '1000-098'). Returns suggestions with street, localidade (postal locality), concelho, distrito and cp7. When cp7 is null the street spans several postal codes: call resolve_postal_code with art_id and the door number.
| Name | Required | Description | Default |
|---|---|---|---|
| q | Yes | Street text (with optional door number) or a 4–7 digit postal code | |
| count | No | Max suggestions |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the behavioral disclosure burden. It clearly states the output fields (street, localidade, concelho, distrito, cp7) and the special cp7-null behavior. This provides meaningful operational information beyond the input schema, though it omits details like empty-result behavior.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Four tightly written sentences: one overview, one input format with examples, one output description, and one conditional handoff to a sibling. Every sentence adds distinct value with no filler or repetition.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the low parameter count and absence of an output schema, the description is nearly complete: it explains input variants, expected output fields, and a routing condition. A minor gap is that art_id is referenced as an input to resolve_postal_code but is not explicitly listed among the suggestion fields, so the agent must infer it comes from the response.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so the baseline is 3. The description goes beyond the schema by giving real examples ('av liberdade lisboa 196', '1000-098') and explaining how q can represent different forms, including locality and door number. It does not add much for count, but the schema already documents it.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description begins with a specific verb and resource: 'Autocomplete a Portuguese address or postal code.' It also differentiates from the sibling tool by explaining the condition under which resolve_postal_code should be used instead.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
It explicitly tells the agent when to hand off to resolve_postal_code: 'When cp7 is null ... call resolve_postal_code with art_id and the door number.' It also gives concrete input examples for both address text and postal codes. It does not fully distinguish from postal_code_info, but the core usage context is clear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
3 tool updates
- First observed
postal_code_info - First observed
resolve_postal_code - First observed
suggest_address
Frequently Asked Questions
Claiming proves that you control a remote MCP connector. It does not move, proxy, or interrupt the server.
Open the connector listing, choose Claim ownership, and sign in to Glama.
Complete one verification method:
GitHub identity — fastest for official registry listings. For a namespace such as
io.github.alice/server, link the matching GitHub user, then choose Claim with GitHub. An organization namespace such asio.github.acme/serveralso needs that organization to have installed the Glama AI GitHub App and approved its permissions, because GitHub discloses organization membership only to apps it has installed. Use HTTP or DNS when it has not.HTTP challenge — works when you can deploy a public file. Generate a token, publish the exact JSON Glama shows at
/.well-known/glama.jsonon the same origin as the connector, then choose Check HTTP challenge.DNS challenge — works when you control DNS but cannot change the server. Generate a token, create the exact TXT record Glama shows, wait for it to propagate, then choose Check DNS challenge.
After verification, Glama sends a confirmation email and gives you access to listing details, thumbnails, health checks, and analytics. Keep the HTTP file or DNS record in place: Glama periodically checks it and ownership remains verified while the token is discoverable.
The HTTP ownership file has this structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"claim": "glama_claim_..."
}Claim tokens are opaque, stable, and bound to the signed-in Glama account. They contain no email address or other personal information. If Glama can no longer discover a verified HTTP or DNS token, it starts a seven-day grace period before removing claim-based access. Restore the same token during that period to keep ownership verified. Never publish an email address, Glama session token, GitHub token, or connector credential as ownership proof.
If verification fails, confirm that you copied the current token exactly. The HTTP file must be public, return valid JSON with a successful HTTP response, and stay on the connector's origin. DNS changes may need more time to propagate. A claim cannot transfer to a different origin or hostname: if the connector target changes, Glama starts the grace period and the new target must be claimed separately after the previous claim is released.
For a connector linked to the official MCP Registry, registry updates continue to replace its name, description, and URL by default. After claiming, open Manage connector and enable Use Glama listing details as the source of truth if edits made on Glama should be preserved. Categories and thumbnails are always managed on Glama; registry linkage and technical connection settings continue to sync.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
To improve your MCP server's ranking:
Claim ownership of the server listing
Complete the server profile with an accurate description and thumbnail
Provide a test profile so Glama can connect to and evaluate the server
Keep tool definitions clear and complete to earn a high Tool Definition Quality Score (TDQS)
Route real usage through the Glama Gateway; more recorded successful server uses also improve the ranking
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Connectors
Correios: CEP, official-source lookup. Platform-hosted, pay per query with prepaid credit.
Postcodes MCP — wraps postcodes.io UK postcode API (free, no auth)
Correios: Completa CEP (CEP + Área territorial brasileira), official-source lookup. Platform-hosted,
Returns the postal code (CEP) and standardized address from the Brazilian Post from a given address.
Related MCP Servers
- AlicenseNot gradedqualityCmaintenanceMCP server for querying Brazilian postal codes (CEP) from the official Correios source, supporting read-only lookups via natural language in any MCP-compatible client.MIT
- AlicenseAqualityBmaintenanceMCP server for Portuguese public data, providing tools to validate NIF, IBAN, and postal codes, and to look up national holidays without API keys.5MIT
- AlicenseNot gradedqualityCmaintenanceMCP server for querying Brazilian postal codes (CEP) and territorial areas using official Correios data, providing a read-only tool to complete CEP information.MIT
- FlicenseNot gradedqualityDmaintenanceValidates Hungarian postcodes and addresses using official Magyar Posta and KSH data, enabling postcode lookup, address validation, and county listings via MCP tools.-
Glama MCP Gateway
Add one secure layer between your agents and this server.
TDQS
Each tool targets a distinct lookup workflow: postal code to address info, free text to autocomplete suggestions, and street/door to exact postal code resolution. There is no meaningful overlap, and the dependency between suggest_address and resolve_postal_code is clearly explained.
All tool names are snake_case and descriptive, and two follow a verb_noun pattern. postal_code_info deviates slightly by using a noun_info structure, but this is minor and does not create confusion.
Three tools is well-scoped for a Portuguese address and postal code service. Each tool covers a necessary part of the lookup/resolution workflow without redundancy or bloat.
The tool set covers the full expected lifecycle for this domain: forward autocomplete, exact postal code resolution, and reverse lookup by postal code. The workflow from suggest_address to resolve_postal_code is coherent, and no obvious dead ends or missing operations are apparent.