Prefeitura MG Contagem: Certidão Negativa de Débitos
Server Details
Prefeitura MG Contagem: Clearance Certificate (Debts), official-source lookup. Platform-hosted, pay
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- mcp-dir/pref_mg_contagem_cnd-mcp
- GitHub Stars
- 0
TDQS
Scored across 7 tools
The tools have distinct purposes: authentication, connection status, marketplace operations, a single domain-specific consultation, and platform utilities. They don't overlap heavily, though 'marketplace' and 'toolkit_info' both touch on installed tools, which could cause minor confusion.
Naming is mixed: some are single verbs (authenticate, connect), some are verb_noun (report_bug, show_version), one is a very long snake_case domain name (pref_mg_contagem_cnd_consultar), and one is noun_noun (toolkit_info). No consistent pattern or style.
With 7 tools, the count is reasonable, but only one tool directly serves the server's stated purpose (certidão consult). The other six are generic platform management tools that belong to a broader toolkit, making the count feel over-scoped for the declared domain.
The server is titled 'Prefeitura MG Contagem: Certidão Negativa de Débitos' but exposes only a single consultation tool. There is no lifecycle for the certificate (e.g., list, verify, download), and the rest of the tools are unrelated infrastructure. This is severely incomplete for the purported purpose.
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 |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description adds meaningful context beyond the annotations by explaining the permanent vs session-only behavior, the configuration header approach, and the no-args link behavior. It also clarifies that the operation is idempotent (repeated token submissions are safe), consistent with idempotentHint. No contradictions 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 three sentences but information-dense, prioritizing the browser-login flow and then the two auth methods. Every sentence contributes a distinct piece of workflow guidance, though it could be slightly tighter.
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 auth tool with no output schema, the description covers the authentication workflow, both usage modes, token format, and the no-args behavior. It does not describe the success/failure return values, but the core interaction is fully specified.
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 input schema only provides a 'token' string with no description, so the description carries the full burden. It compensates by specifying that token is a JWT pasted by the user, and that omitting it retrieves the login link, giving the agent complete parameter semantics.
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 identifies the tool as an authentication mechanism for the MCP server, instructing IDE agents to log in via browser, copy the access token, and either configure it permanently or pass it as a JWT. This goes beyond the tool name by explaining the exact authentication resource and flow, distinguishing it from sibling tools like 'connect' or 'marketplace'.
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 provides clear guidance on when to use each mode: adding the header for a permanent, non-expiring connection vs pasting a token for session-only login, and calling with no args to get the link. It does not explicitly rule out alternatives among siblings, but the context is sufficiently clear for an agent to decide.
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 | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already provide readOnlyHint=true, idempotentHint=true, and destructiveHint=false. The description adds useful behavioral details about the response structure (authenticated, pending[], connect_url, per-install URLs) in different states (all connected vs. missing credentials). This goes beyond annotations by explaining state-dependent output, but it could be richer, e.g., mentioning whether it may be stale or how to interpret the URLs.
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, front-loaded with the core purpose ('Returns connection status and URLs'), then explains the two main states. Every sentence adds value with no fluff 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 tool has no parametersring and annotations, the description is fairly complete for its simplicity. It explains the return values in two key scenariosanding the description of connect_url and pending[] is adequate. It lacks a note on error cases (e.g., network failures) but that is minor for a status tool.
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 and the schema coverage is 100% (vacuously). The description does not need to explain parameters; it explains the output well. Baseline for 0 params is 4, and it fully justifies that because it focuses on what the response will contain.
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 connection status and URLs, with specific details about behavior when all providers are connected versus when credentials are missing. It distinguishes itself from siblings like 'authenticate' by focusing on status, not initiating authentication. It could be more explicit that it is a read-only status check, but the title and annotations help.
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 checking connection status, but it does not explicitly state when to use this tool versus alternatives like 'authenticate'. It doesn't provide any when-not-to-use guidance or mention that it should be used before other operations. The context is clear enough for a status check, but it lacks explicit contrast with similar tools.
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 |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations are minimal (readOnlyHint false, openWorldHint true, etc.) but the description adds crucial behavioral context: invoke works without installing, returns connect/checkout links when needed, and writes require owner/admin. It also discloses that the tool includes prompt library functions. This goes beyond the annotations to explain side effects and conditions. Minor gaps: doesn't explicitly mention that some actions might be destructive or irreversible, but the description does cover the key behavioral traits.
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 dense paragraph that front-loads the key purpose, then explains the core flow, then covers special cases and permissions, finally mentioning the prompt library. Every sentence adds value with minimal fluff. It's long but appropriately so given the tool's complexity (14 actions, 23 params). The structure flows logically from discovery to execution to edge 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?
Given the tool's complexity (multi-action hub, 23 params, no output schema, minimal annotations), the description covers the essential behavioral semantics: the search-describe-invoke flow, the difference between temporary and permanent installations, auth/payment handling, permissions, and the separate prompt library. It's remarkably complete for what it needs to explain. The only minor gap is lack of explicit error handling or edge cases, but the description covers the main usage patterns thoroughly.
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 schema covers 23 parameters but with 0% description coverage in the schema itself (no per-property descriptions). The tool description names many parameters in context (action, mcp_id, tool_id, arguments, etc.) and explains their roles in the flow, but it does not systematically describe each parameter's format or semantics. Given the large parameter count and zero schema description, a baseline of 3 is fair: the description adds meaning for the core action parameters but does not fully illuminate all 23 parameters (e.g., 'conversation', 'immediate', 'tier_slug').
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 that this is the official mcp.ai marketplace, covering both discovery and execution of MCPs/tools. It lists the core actions (search, describe, invoke) and explicitly differentiates between temporary invocation and permanent installation. This is a specific verb+resource statement that distinguishes 'marketplace' from siblings like 'toolkit_info' or 'authenticate', which have 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?
The description provides explicit guidance on when to use which action: use 'invoke' for one-off runs even if the MCP is not installed, use 'install' only to make permanent, prefer invoke over install for single use. It also clarifies that search/describe are for discovery, and lists special cases like connect links for credentials and checkout links for payment. It explains which actions require owner/admin. This is comprehensive guidance on when and how to use the tool versus alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
pref_mg_contagem_cnd_consultarBRead-onlyIdempotentInspect
Prefeitura MG Contagem: Certidão Negativa de Débitos, 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 |
|---|---|---|---|
| cpf | No | ||
| cnpj | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is covered. The description adds valuable context: it's hosted by the platform, requires prepaid credits, returns non-confidential data, and clarifies the client's LGPD responsibilities. This goes beyond annotations without contradicting 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 paragraph, reasonably concise, and front-loaded with the tool's purpose. It includes necessary legal and payment context, though the LGPD sentence could be seen as slightly verbose for a tool description, but it's still efficient.
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 tool's simplicity (2 optional params, no output schema), the description covers the main context: official source, payment model, and data privacy. However, it lacks details on how to specify the target (cpf vs cnpj) and what the response contains, which would be helpful for a complete understanding.
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%, and the description does not explain the parameters (cpf, cnpj) beyond their names. The description mentions the tool consults CND but doesn't clarify that cpf or cnpj are the identifiers to be provided, nor their format or mutual exclusivity. With zero coverage, the description should compensate but doesn't.
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 queries official sources for Certidão Negativa de Débitos from Prefeitura MG Contagem, distinguishing it from generic tools. It specifies the resource (CND) and the official source, though it doesn't explicitly contrast with siblings, which are unrelated.
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 consulting official Brazilian sources and mentions payment via prepaid credits, but it doesn't explicitly state when to use this tool versus alternatives or provide exclusions. It gives context about the platform hosting and LGPD compliance but lacks direct guidance on selection.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
report_bugAIdempotentInspect
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 | [] |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare idempotentHint=true and destructiveHint=false, covering the safety profile. The description adds the behavioral detail that the conversation array is needed for reproduction, which is useful context. However, it doesn't disclose what happens after reporting (e.g., confirmation, storage) or any rate limits, but the annotation coverage lowers the burden.
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 filler. The purpose is front-loaded, and the usage instruction is direct. It earns a high score for efficiency, though the second sentence could be slightly clearer about the conversation parameter's format.
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 3-parameter tool with no output schema, the description covers the core purpose and one parameter's usage. However, it omits semantics for the required 'message' parameter and the optional 'context' parameter, and provides no information about return behavior. It's adequate but not thorough.
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. It only explains the 'conversation' parameter (as an array with recent messages), but leaves 'message' (the only required param) and 'context' entirely unexplained. The agent gets no semantic guidance for the most important parameter, so this is a significant gap.
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 and resource: 'Report a bug, missing feature, or send feedback.' This clearly distinguishes the tool from its siblings (authenticate, connect, marketplace, etc.), which serve entirely different functions. The purpose is unambiguous and not a tautology.
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 gives concrete usage guidance: 'Include the conversation array with recent messages for reproduction.' This tells the agent what to provide for effective use. While it doesn't explicitly state when not to use this tool, the sibling tools are unrelated, so the context is clear enough.
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 | |||
TDQS
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 'current' version context but no additional behavioral traits beyond what annotations already convey. There is no contradiction.
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 with no wasted words. It immediately states the action and the expected output.
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, zero-parameter read-only version-checking tool, the description sufficiently conveys what the tool does. While there is no output schema, the expected return content is self-explanatory from the word 'versions.'
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 accepts zero parameters and the schema covers 100% of parameters, so there are no parameter details to document. This is the appropriate baseline for a parameterless tool.
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 uses the imperative verb 'Show' and specifies the exact resource ('current MCP platform and adapter versions'), making the tool's purpose unambiguous. It clearly distinguishes itself from sibling tools like authenticate, connect, and report_bug.
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?
No explicit when/when-not guidance or alternative tool references, but the tool's purpose is immediately understood: use it to check current version information. With no overlapping sibling tools, the lack of explicit exclusions is acceptable.
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 | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, idempotentHint, and destructiveHint. The description adds meaningful context about exactly what state is inspected—installed MCPs, connection status, accounts, and catalog tool counts—without contradicting the annotations. No hidden side effects or additional behavioral caveats are needed for a simple status query.
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 immediately states the tool's purpose and then enumerates the return details. Every word earns its place with no fluff 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?
For a no-parameter, read-only status tool, the description fully explains the return value categories in the absence of an output schema. It gives the user a concrete expectation of what 'toolkit state' means, making it complete and self-sufficient.
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 baseline is 4. No parameter documentation is needed, and the description appropriately focuses on the returned state rather than input semantics.
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 uses a specific verb ('Returns') and clearly identifies the resource ('current toolkit state') with detailed output components: installed MCPs, connection status, connected accounts, and catalog tool counts. This distinguishes it from sibling tools like show_version, which likely focuses on version info.
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 makes the tool's context obvious: use it whenever you need an overview of the toolkit's current state. It does not explicitly name alternatives or exclusions, but its purpose is clear enough that a user would know when to invoke it versus other sibling tools.
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.
No tool schema history has been recorded yet.
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
Prefeitura MG Belo Horizonte: Clearance Certificate (Debts), official-source lookup. Platform-hosted
Prefeitura MG Montes Claros: Clearance Certificate (Debts), official-source lookup. Platform-hosted,
Prefeitura PR Curitiba: Clearance Certificate (Debts), official-source lookup. Platform-hosted, pay
Prefeitura MG Uberaba: Clearance Certificate (Debts), official-source lookup. Platform-hosted, pay p
Related MCP Servers
- AlicenseNot gradedqualityCmaintenanceProvides a read-only MCP tool to consult official negative debt certificates from the municipality of Itaúna, MG, Brazil, with hosted pay-per-use access.MIT
- AlicenseNot gradedqualityCmaintenanceMCP server for consulting Minas Gerais state tax debt clearance certificates from the official SEFAZ MG source. Read-only, pay-per-use, works with any MCP client.MIT
- AlicenseNot gradedqualityCmaintenanceProvides read-only consultation of negative debt certificates (Certidão Negativa de Débitos) from the Juatuba city prefecture in Minas Gerais, Brazil, through a single official tool.MIT
- AlicenseNot gradedqualityCmaintenanceRead-only MCP server for consulting official negative debt certificates from the Montes Claros city government, with pay-per-use prepaid credits.MIT