Correios: Completa CEP (CEP + Área territorial brasileira)
Server Details
Correios: Completa CEP (CEP + Área territorial brasileira), official-source lookup. Platform-hosted,
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- mcp-dir/correios_completa_cep-mcp
- GitHub Stars
- 0
- Server Listing
- Correios Completa CEP
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
Full call logging
Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.
Tool access control
Enable or disable individual tools per connector, so you decide what your agents can and cannot do.
Managed credentials
Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.
Usage analytics
See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.
Tool Definition Quality
Average 4.1/5 across 7 of 7 tools scored. Lowest: 3.4/5.
The tool set mixes platform-level utilities (authenticate, connect, marketplace, report_bug, show_version, toolkit_info) with a single domain-specific tool (correios_completa_cep_consultar). The platform tools have overlapping purposes: connect, toolkit_info, and marketplace all relate to connection/status/installation, causing potential confusion about which to use for a given task.
Naming is inconsistent: most tools use generic English verbs (authenticate, connect, report_bug, show_version, toolkit_info) while the only domain tool uses Portuguese snake_case (correios_completa_cep_consultar). The mix of languages and conventions (toolkit_info vs show_version) lacks a predictable pattern.
Seven tools is a reasonable count, but the server's stated purpose is 'Correios: Completa CEP' yet only one tool actually performs that function. The other six are generic platform utilities that could be part of any MCP server, making the count feel inflated relative to the domain.
The domain is CEP lookup, but there is only a single consult tool with no supporting operations (e.g., batch lookup, validation, history, or address formatting). The rest of the tools are unrelated to the domain, so the actual CEP surface is severely incomplete.
Available Tools
7 toolsauthenticateAIdempotentInspect
MCP.AI for IDE agents (Cursor, etc.): log in in the browser, copy the access token. Best: add it to this server's config as a header Authorization: Bearer <token> for a permanent, non-expiring connection. Or paste it here for a session-only login: call with { token: "" } after the user pastes, or with no args to get the link.
| Name | Required | Description | Default |
|---|---|---|---|
| token | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description discloses the session behavior ('session-only login') and the permanent config option, adding context beyond the idempotentHint annotation. However, it doesn't explain what happens if an invalid token is provided or whether the operation invalidates existing sessions. It doesn't contradict the annotations—idempotentHint:true is consistent with a fire-and-forget authentication setup—but the explanatory burden is only partially met. The description provides some insight into side effects, but not exhaustively.
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 a single run-on sentence that crams multiple instructions and alternatives, making it harder to parse. It front-loads the purpose but then meanders through configuration options, sentences like 'MCP.AI solo for IDE agents (Cursor, etc.):' are awkwardly placed. It's compact but not well-structured, and the flow could be improved with bullets or more deliberate punctuation.
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 tool with one optional parameter and no output schema, the description covers the main scenarios: permanent config via header, session-based token, and no-arg link retrieval. It doesn't explain error cases or what happens after authentication, but given the simplicity of the tool, this is largely sufficient. The integration with server config is a good contextual detail that aids the agent.
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?
With a schema that only defines 'token' as an optional string and 0% schema description coverage, the description carries full responsibility for explaining the parameter. It explains that 'token' expects a JWT and that omitting it returns a link. This meaningfully adds to the minimal schema, though it could be more explicit about the exact format or give an example. Still, it compensates well for the lack of schema hints.
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 clearly states this tool handles authentication, with a specific verb ('authenticate') and resource (the MCP server's connection to the IDE agent). It explicitly describes the login flow and token usage, distinguishing it from sibling tools like 'connect' or 'marketplace' which serve different purposes. The focus on browser login and token handling leaves no ambiguity about its role.
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 concrete usage guidance: the recommended approach (configure via header), the alternative (pass token in the call), and the no-arg option to retrieve a link. It implicitly tells when to use each variant, though it doesn't explicitly say when not to use the tool or contrast with alternatives like 'connect' beyond the content. This is clear operational guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
connectARead-onlyIdempotentInspect
Returns connection status and URLs. When all providers are connected, returns authenticated:true and empty pending[]. When credentials are missing, returns connect_url for the toolkit and per-install URLs.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and destructiveHint=false, so the safety profile is clear. The description adds behavioral details about the response in two scenarios (all providers connected vs. missing credentials), including that it returns connect_url and per-install URLs. This is useful and does not contradict annotations.
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, both front-loaded with the core function. No fluff, every word adds value. It efficiently covers the main output and special cases.
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 0-parameter, read-only status tool, this description is complete. It explains the response states (connected vs missing credentials) and the URLs returned. No output schema is provided, so the description suffices as the only behavioral documentation.
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?
The tool has zero parameters, so the description doesn't need to explain any. Baseline for no parameters is 4, and the description doesn't mention parameters because there are none. It focuses on the output, which is appropriate.
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 clearly states the tool's function: 'Returns connection status and URLs.' It goes beyond a generic purpose by detailing two specific response states (when all providers are connected vs. when credentials are missing), making the tool's scope immediately understandable. There's no ambiguity about what this tool does.
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 explains what the tool returns under different conditions, which implicitly guides when to call it (to check connection status). It does not explicitly reference sibling tools like 'authenticate', but the mention of per-install URLs and toolkit URLs provides actionable context. Missing an explicit 'use this if you need X' might be a slight gap, but the purpose is clear enough.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
correios_completa_cep_consultarARead-onlyIdempotentInspect
Correios: Completa CEP (CEP + Área territorial brasileira), consulta em fonte oficial. Hospedado pela plataforma, sem credenciais da plataforma, pague por consulta com crédito pré-pago. Consulta informação de fontes e órgãos oficiais brasileiros (a mesma disponível ao cidadão), não é dado sigiloso. O cliente é o controlador dos dados e responde pela finalidade legítima (LGPD).
| Name | Required | Description | Default |
|---|---|---|---|
| cep | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false. The description adds meaningful behavioral context: it discloses hosting ('Hospedado pela plataforma'), payment requirements ('pague por consulta com crédito pré-pago'), data source ('fontes e órgãos oficiais brasileiros'), and that data is not confidential ('não é dado sigiloso'). It also states the client's LGPD responsibility, which is beyond the annotations. No contradiction with annotations.
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 one long paragraph but is front-loaded with the core purpose in the first phrase. It includes multiple sentences about payment, data source, and LGPD, which are useful but could be tightened. It is not excessively long, yet not maximally concise; each sentence adds value, but the structure could be bullet-pointed for clarity.
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?
With a single parameter, no output schema, and decent annotations, the description covers key aspects: it states the return scope (CEP + territorial area), payment model, data source, and legal responsibilities. It does not describe the output format or error handling, but given the simplicity of the tool and the explicit mention of what is returned, it is reasonably complete for an agent to understand the context.
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 0%, so the description must compensate for the lone 'cep' parameter. However, the description does not explain the expected format (e.g., digits only, with/without hyphen), validation rules, or any constraints on the input. The only hint is the term 'CEP', which may be widely understood, but the description fails to provide actionable input guidelines, leaving the agent to guess the exact format.
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 clearly states the tool's function: 'Completa CEP (CEP + Área territorial brasileira), consulta em fonte oficial.' This explicitly names the resource (CEP) and the action (consulta/completion), and distinguishes it from the general sibling tools (authenticate, connect, etc.) by specifying the Brazilian postal code lookup and territorial area.
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 implies usage for querying complete CEP data ('consulta em fonte oficial') and mentions payment per query, but it does not explicitly state when to use this tool versus alternatives, nor does it give exclusions or conditions. The context is implied rather than explicit, and no alternative tool is named.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
marketplaceAInspect
The official mcp.ai marketplace — the in-platform catalog of every MCP/tool, AND the way to run them. Covers capability requests like "find an MCP that does X", "consulta um CPF", "is there a tool for Y". Core flow: action=search discovers MCPs by intent → describe returns one MCP's full profile (every tool with its id + params, pricing, auth) so you pick the right tool_id → invoke RUNS that tool. KEY: invoke works even when the MCP is NOT installed — it runs the tool pontualmente (one-off), without adding the MCP to the toolkit and without bloating the tool list. If the MCP needs a credential/login, invoke returns a connect link; if it is paid and the wallet is empty, invoke returns a checkout/top-up link (the user opens it, then you retry). Use install only to make an MCP PERMANENT in the active toolkit (its tools then show up natively in future sessions); prefer invoke for a single/occasional use. list_tools lists what is callable right now. subscribe/cancel handle per-MCP billing; report_bug sends feedback; request_mcp asks us to build a NEW MCP when nothing fits. Search/describe flag installed_in_toolkit vs installed_in_workspace. Writes (install/uninstall/subscribe/cancel and the one-off install behind invoke) require workspace owner/admin. It also carries the mcp.ai PROMPT LIBRARY, which is about ready-made prompt TEXT rather than MCPs: search_prompts finds one, get_prompt returns its full text with {{variables}} filled, and publish_prompt saves a prompt and returns a shareable mcp.ai/p/ link that opens without login.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | ||
| query | No | ||
| action | No | search | |
| mcp_id | No | ||
| message | No | ||
| tool_id | No | ||
| arguments | No | {} | |
| immediate | No | ||
| tier_slug | No | ||
| prompt_body | No | ||
| prompt_slug | No | ||
| prompt_tool | No | ||
| prompt_vars | No | {} | |
| conversation | No | [] | |
| prompt_title | No | ||
| request_name | No | ||
| cancel_reason | No | ||
| cancel_comment | No | ||
| prompt_targets | No | ||
| report_context | No | ||
| prompt_category | No | ||
| request_details | No | ||
| prompt_description | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Despite annotations carrying readOnlyHint=false/destructiveHint=false, the description adds substantial behavioral context beyond them: writes require workspace owner/admin privileges, invoke performs a hidden one-off install that does NOT bloat the toolkit, auth-missing returns a connect link, empty-wallet paid tools return a checkout/top-up link requiring user action then retry. It also discloses that search/describe flag installed_in_toolkit vs installed_in_workspace. No contradiction with annotations. Rich safety and side-effect disclosure.
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?
Every sentence earns its place in terms of content density — there is genuine informational value throughout. However, it is one continuous wall-of-text paragraph with no structural breaks, bullets, or section delineation, which is poor for an aggregate tool managing 14 sub-actions and two feature domains (MCPs + prompt library). The information is complete but the formatting substantially harms scannability for an agent that must rapidly extract action-specific guidance.
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 tool this complex (14 actions, 23 params, no output schema), the description is remarkably complete: it covers the discovery workflow, the install-vs-invoke decision, auth and payment edge cases with retry semantics, permission/ownership requirements, the prompt library sub-domain, and secondary actions (list_tools, subscribe/cancel, report_bug, request_mcp). Gaps exist only on individual parameter returns and some output-shape details, which is understandable given no output schema exists.
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?
With 0% schema description coverage across 23 parameters, the description bears the full explanatory burden. It does contextualize the most critical parameters well: the action enum (all 14 values explained), tool_id ('so you pick the right tool_id' from describe's profile), mcp_id, prompt_slug, and prompt_vars ({{variables}} filled). However, several parameters get zero coverage: immediate, tier_slug, conversation, arguments, limit, query, message, cancel_reason/comment, report_context, request_details. It compensates for the primary parameters but leaves many secondary ones unexplained.
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 is exceptionally specific about what this aggregated hub tool does: it's the mcp.ai marketplace catalog AND the execution engine for MCPs, plus a prompt library. It enumerates all 14 sub-operations (search→describe→invoke core flow, install/uninstall, billing, prompt library) and clearly differentiates the marketplace's role from siblings like authenticate/connect (auth happens via returned connect links, not in this tool).
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?
Outstanding when-to-use guidance: explicitly directs 'prefer invoke for a single/occasional use' versus 'Use install only to make an MCP PERMANENT in the active toolkit', explains the retry-after-payment/connect-link flow, names list_tools for current callables, and states request_mcp for 'when nothing fits'. The search→describe→invoke core flow is spelled out as a decision sequence. This is the model of usage differentiation.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
report_bugBIdempotentInspect
Report a bug, missing feature, or send feedback. Include the conversation array with recent messages for reproduction.
| Name | Required | Description | Default |
|---|---|---|---|
| context | No | ||
| message | Yes | ||
| conversation | No | [] |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The annotations indicate idempotentHint=true and readOnlyHint=false, but the description does not explain the side effects (e.g., creating a ticket, sending a message). It doesn't state what happens after reporting or if any permissions are needed.
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?
Two short sentences convey the essential information without fluff. It is front-loaded with the primary action and clearly states what to include.
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 simple feedback tool, it explains the main param (conversation) and purpose. However, it doesn't mention what happens after reporting, nor does it clarify the 'context' parameter, leaving some gaps.
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?
The description mentions 'conversation array' explicitly, giving context for that parameter that the schema lacks. However, 'context' is not explained, and 'message' is only implied. With 0% schema description coverage, more detail would be helpful.
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 clearly states the purpose: 'Report a bug, missing feature, or send feedback.' This is unambiguous and directly tells the user what the tool does. The title 'Report Bug' reinforces this.
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 says to include the conversation array for reproduction, but does not specify when to use this tool versus other siblings like 'marketplace' or 'show_version'. Also lacks prerequisites or conditions for use.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
show_versionARead-onlyIdempotentInspect
Show the current MCP platform and adapter versions.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false. The description adds no extra behavioral context beyond the resource and action, such as return format or side effects. It is consistent with annotations but contributes little beyond them.
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 a single, direct sentence with no filler. It front-loads the action and resource, earning its place entirely.
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 zero-parameter, read-only version tool with no output schema, the description is sufficient. It tells the agent exactly what the tool does and what resource it accesses, leaving no ambiguity.
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?
The tool has no parameters, and schema description coverage is 100% (empty schema). The description doesn't need to explain parameters, so the baseline of 4 applies.
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 states 'Show the current MCP platform and adapter versions,' using a specific verb ('Show') and resource ('MCP platform and adapter versions'). This clearly distinguishes it from siblings like authenticate or report_bug, which serve different purposes.
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?
Usage is implied by the description: use this when you need version information. However, there is no explicit mention of when to use it over the sibling toolkit_info or any exclusions/alternatives, so it only meets the 'implied usage' level.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
toolkit_infoARead-onlyIdempotentInspect
Returns the current toolkit state: installed MCPs, their connection status, the accounts connected to each one, and how many catalog tools each exposes.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description goes beyond the readOnlyHint annotation by specifying exactly what state is returned (installed MCPs, connection status, accounts, counts). It adds meaningful context without overpromising, though it does not address potential latency or failure modes.
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 a single, front-loaded sentence that maximizes information density. Every clause adds value, and there is zero 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 parameterless read-only tool with annotations and no output schema, the description fully covers what the tool returns and when it is relevant. No gaps in context are evident.
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?
The tool has zero parameters, so per the rubric, the baseline score is 4. The description adds no parameter details, but none are needed.
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 clearly states the tool 'returns the current toolkit state' and enumerates specific data points (installed MCPs, connection status, accounts, catalog tool counts), distinguishing it from siblings like show_version or marketplace. The verb+resource structure is explicit and action-oriented.
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 context for using this tool is obvious—retrieve toolkit state—but it does not explicitly mention when not to use it or alternatives. Since siblings like connect and authenticate serve different purposes, the implied usage is clear, yet it stops short of explicit guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
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
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 Servers
- FlicenseNot gradedqualityDmaintenanceEnables lookup of Brazilian addresses by CEP (postal code) using the ViaCEP API, returning formatted address information including street, neighborhood, city, and state.1
- AlicenseNot gradedqualityCmaintenanceEnables querying Brazilian CEP (postal code) addresses via the public ViaCEP API, returning formatted HTML with address details.GPL 3.0
- 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
- AlicenseNot gradedqualityCmaintenanceConsulta em fonte oficial para download via CEP, com ferramenta somente leitura e paga por uso.MIT
Your Connectors
Sign in to create a connector for this server.