SEFAZ MA: Certidão de Dívida Ativa
Server Details
SEFAZ MA: Certificate de Dívida Ativa, official-source lookup. Platform-hosted, pay per query with p
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- mcp-dir/sefaz_ma_certidao_divida_ativa-mcp
- GitHub Stars
- 0
- Server Listing
- SEFAZ MA: Certidão de Dívida Ativa
TDQS
The domain-specific tool (sefaz_ma_certidao_divida_ativa_consultar) is clearly distinct from the platform utilities. However, the 'marketplace' tool introduces a meta-layer that allows invoking arbitrary MCPs, which could confuse agents expecting only SEFAZ-related functionality. The connection/auth tools are also somewhat overlapping in purpose.
Naming is inconsistent: the domain tool uses a long snake_case descriptor (sefaz_ma_certidao_divida_ativa_consultar), while platform tools use short camelCase verbs (authenticate, connect, report_bug) or noun-style names (marketplace, toolkit_info). No clear pattern emerges.
Seven tools is within the typical range, but only one directly serves the declared purpose. The other six are generic platform utilities (auth, connection, version, feedback) that bloat the surface area for what should be a focused service. Feels padded rather than well-scoped.
For the core domain of consulting a Certidão de Dívida Ativa, a single query tool might suffice. However, the generic utilities do not fill any domain-specific gaps (e.g., no tool for listing certificates, checking status, or handling multiple queries). The surface is minimal but functional for a simple lookup.
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 discloses behavioral details beyond annotations: it explains that the config approach yields a permanent non-expiring connection while pasting the token results in session-only login, and that calling with no args returns a link. This adds context about the tool's outcomes and side effects. Annotations provide idempotentHint=true and destructiveHint=false, which align with these behaviors. The description adds value by clarifying the two distinct modes of 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 moderately long but well-structured, front-loading the purpose and then providing two clear options. Every sentence contributes useful information (purpose, best practice, session method, and link generation). It could be slightly trimmed but remains efficient for a tool with multiple usage modes.
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 (one optional parameter, no output schema, no nested objects), the description adequately covers how to invoke it and what to expect in terms of outcomes (link or token configuration). It does not describe the return format, but for a simple authentication tool without an output schema, this is acceptable. The description is sufficient for an agent to correctly use the 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?
Although schema description coverage is 0%, the description fully explains the 'token' parameter: it is optional and can be provided as a JWT after the user pastes it, or omitted to receive a login link. It clarifies the parameter's role and conditions for use, going beyond what the schema (which only defines type) provides.
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 purpose: authenticating an IDE agent by logging in via browser and obtaining an access token. It specifies the verb 'authenticate' and the resource (MCP.AI) accurately. It also differentiates from siblings like 'connect' by focusing on the authentication workflow, though it doesn't explicitly contrast with them, its specificity is sufficient.
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 explicit usage instructions: 'Best: add it to this server's config as a header...' for a permanent token, or 'paste it here for a session-only login' with token parameter, or 'call with no args to get the link'. It clearly distinguishes between permanent and session options, providing direct guidance on when to use each method, effectively covering 'when to use' and 'how to use'.
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 declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is well covered. The description adds valuable conditional behavior: returning authenticated:true and empty pending[] when all providers are connected, and connect_url plus per-install URLs when credentials are missing. However, it does not address partial connection states, which is a minor gap.
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 concise, with exactly two sentences that front-load the core purpose and then explain key behaviors. Every word earns its place, with no fluff or excessive detail.
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 tool with no output schema, the description covers the two most important scenarios (all connected, missing credentials). However, it does not mention partial connection states or what happens when some providers are connected and others are not, which would make it more complete.
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?
There are zero parameters, so the description carries no burden for parameter semantics. The schema is trivially complete with 100% coverage. The baseline for 0 params is 4, and there is no need for additional parameter-related context.
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 what the tool does: 'Returns connection status and URLs.' It distinguishes itself from sibling tools like 'authenticate' by focusing on status retrieval rather than performing an authentication flow. The mention of specific return values in different connection states further reinforces its unique purpose.
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 the tool is used for checking connection status and URLs, but it does not explicitly state when to use this tool versus alternatives (e.g., 'authenticate'). It provides context about the scenarios it covers (all connected vs. missing credentials) but lacks explicit when-to-use or when-not-to-use guidance.
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?
The description richly discloses behavior beyond annotations: invoke runs one-off without bloating the toolkit, missing credentials produce a connect link, empty wallets produce a checkout/top-up link, and installed flags are surfaced by search/describe. These are meaningful behavioral traits not encoded in the 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 long but well-structured, starting with a clear summary and then using a core-flow narrative that covers search, describe, invoke, install, billing, and the prompt library. A few promotional or repeated phrases could be trimmed, but the density is justified by the broad scope.
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 23 parameters, no output schema, and many sub-actions, the description is remarkably complete: it explains auth, billing, one-off execution, permanent install, and the prompt library. It misses the `resume` action and does not detail every parameter or output shape, but overall it provides enough context 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 0%, so the description carries the semantic burden. It adds real meaning by explaining the action flow, tool_id selection, arguments, and prompt variables, and it names many parameters indirectly (prompt_body, prompt_slug, cancel_reason, etc.). However, not all 23 parameters are individually explained, and some like `resume` and `conversation` are not described.
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 the official mcp.ai marketplace and states its dual purpose: discovering MCPs and running them. However, it defines an umbrella tool with many sub-actions rather than a single verb+resource, so it is clear but intentionally broad.
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 excellent usage guidance: 'use install only to make an MCP PERMANENT in the active toolkit', 'prefer invoke for a single/occasional use', and it explains when search/describe vs list_tools is appropriate. It also explicitly notes that writes require workspace owner/admin, which is actionable.
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 indicate readOnlyHint=false, destructiveHint=false, and idempotentHint=true, so the safety profile is partially covered. The description adds the useful detail that conversation messages should be included for reproduction, but it does not disclose side effects, submission outcomes, or any other behavioral consequences beyond that.
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 short, front-loaded sentences. The first sentence states the overall purpose; the second provides one actionable detail. No words are wasted and every clause 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?
For a simple three-parameter tool with no output schema, the description is mostly sufficient: it names the purpose and includes a critical parameter instruction. The only notable omission is why the optional context field exists and any response/return behavior, but that is less essential given the tool's low complexity.
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 explicitly explains the conversation parameter's purpose for reproduction and the message parameter is implied by 'Report a bug, missing feature, or feedback.' However, the optional 'context' parameter is not given any semantic guidance, leaving a noticeable gap without 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 clearly states the action ('Report') and the resources/events ('bug, missing feature, or feedback'), which is specific and easily distinguishable from sibling tools like authenticate, marketplace, or show_version.
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 context for when to use the tool ('Report a bug, missing feature, or send feedback') and adds a practical usage instruction ('Include the conversation array with recent messages for reproduction'). It does not explicitly discuss exclusions or alternatives, but no sibling tool plausibly competes with this purpose.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
sefaz_ma_certidao_divida_ativa_consultarARead-onlyIdempotentInspect
SEFAZ MA: Certidão de Dívida Ativa, 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 |
|---|---|---|---|
| ie | No | ||
| cpf | No | ||
| cnpj | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, idempotentHint, openWorldHint=false, and destructiveHint=false. The description adds valuable behavior beyond those: no platform credentials are required, queries consume prepaid credits, and the data is non-confidential public citizen-facing information. It also clarifies LGPD accountability, which is useful context beyond the annotation set.
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 relatively concise and the core purpose is front-loaded. There is a little redundancy between 'fonte oficial' and 'fontes e órgãos oficiais brasileiros', and the LGPD clause adds length, but overall the content is dense and contained.
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?
The tool has three undocumented parameters, no output schema, and no required-property constraints, so the description carries a heavy burden. It explains payment, publicity, and data-responsibility context, but it omits how to parameterize the query, what the returned certificate looks like, and what happens with invalid or missing identifiers.
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 lists three string parameters (ie, cpf, cnpj) with no descriptions, and the description provides zero parameter-specific guidance. It does not state whether these identifiers are alternatives, combinations, or in what format they should be provided, so the agent is left guessing about the intended parameter usage.
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 'SEFAZ MA: Certidão de Dívida Ativa, consulta em fonte oficial', which clearly names the resource, the query action, and the official origin. It also adds that this is the same information available to citizens, differentiating it from privileged or internal access tools.
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 useful usage context: the tool is hosted by the platform, requires no platform credentials, and is paid per query using prepaid credits. It does not explicitly state when not to use it or list alternatives, but the context is clear enough for an agent to determine when this paid official-source query applies.
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, so safety is covered. The description adds that it shows both platform and adapter versions, which is useful behavioral context beyond just 'safe to call'.
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?
A single sentence that is direct and front-loaded. It contains zero fluff and completely conveys the tool's function with just 9 words.
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 such a simple tool with no parameters and no output schema, the description fully communicates what the tool does. There is no missing context; the scope is entirely captured by the description.
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 schema covers all parameter semantics perfectly (100% coverage). Per the rubric, a zero-parameter tool receives a baseline of 4; no additional description is 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 uses the specific verb 'show' with a clear resource ('MCP platform and adapter versions'). It precisely identifies what information is returned and distinguishes itself from sibling tools like 'authenticate' or 'connect' which have entirely 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 makes it obvious when to use the tool (to check version info). No explicit alternatives or exclusions are given, but given the trivial nature of the tool, this is not a gap. It provides clear context without needing to state 'when not to use'.
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 indicate read-only, idempotent, and non-destructive. The description adds context about the specific data returned, which complements but does not contradict the annotations. It does not mention potential errors, but for a simple state query that is acceptable.
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, concise sentence that directly states the tool's purpose and output content. There is no redundancy or unnecessary detail.
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 there is no output schema, the description adequately explains the return value by enumerating the key components of the state. It covers the main aspects (installed MCPs, connection status, accounts, and catalog tool counts) without missing obvious elements for a state-inspection 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 no parameters, so schema coverage is 100%. The description does not need to explain parameters, and the absence of any parameter info is not a gap. The baseline for high coverage is 3, but the description adds no extra meaning for parameters since there are none, so a slightly above-baseline score 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 returns the current toolkit state, specifying exactly what is included (installed MCPs, connection status, accounts, and number of catalog tools). This is specific and distinguishes it from siblings like 'show_version' or 'authenticate'.
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 inspecting overall toolkit state, but does not explicitly mention when to use it over alternatives. However, given the read-only nature and the specific content, it is clear this is for state inspection and not for actions like authentication or connection.
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
SEFAZ MA: Clearance Certificate (Debts), official-source lookup. Platform-hosted, pay per query with
SEFAZ DF: Certificate de Dívida Ativa, official-source lookup. Platform-hosted, pay per query with p
SEFAZ AP: Clearance Certificate (Debts), official-source lookup. Platform-hosted, pay per query with
SEFAZ PA: Clearance Certificate (Debts), official-source lookup. Platform-hosted, pay per query with
Related MCP Servers
- AlicenseNot gradedqualityCmaintenanceEnables querying official tax debt certificates (Certidão de Dívida Ativa) from SEFAZ DF (Federal District Revenue) via a read-only MCP tool. Supports use with any MCP client over HTTP, with prepaid credits.MIT
- AlicenseNot gradedqualityCmaintenanceConsulta em fonte oficial a Certidão Negativa de Débitos da SEFAZ MA, com uma ferramenta somente leitura via MCP over HTTP.MIT
- AlicenseNot gradedqualityCmaintenanceEnables querying of active debt information from the official source of the Attorney General of the State of Mato Grosso. Provides a read-only MCP tool to consult debt status via a hosted HTTP API with prepaid credits.MIT
- AlicenseNot gradedqualityCmaintenanceProvides read-only access to query tax clearance certificates (CNDA/CND) from SEFAZ Piauí via an official source, with pay-per-use prepaid credits and magic-link authentication.MIT
Glama MCP Gateway
Add one secure layer between your agents and this server.