SEFAZ AL: Certidão Negativa de Débitos
Server Details
SEFAZ AL: Clearance Certificate (Debts), official-source lookup. Platform-hosted, pay per query with
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- mcp-dir/sefaz_al_certidao_debitos-mcp
- GitHub Stars
- 0
- Server Listing
- SEFAZ AL: Certidão Negativa de Débitos
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.2/5 across 7 of 7 tools scored.
The single domain tool `sefaz_al_certidao_debitos_consultar` is drowned out by six platform-infrastructure tools, creating ambiguity about what this server is for. `connect` (auth status) overlaps with `toolkit_info` (installed MCPs + connection status) and `authenticate`, while `marketplace` is a grab-bag that explicitly claims the ability to 'consulta um CPF', directly overlapping the SEFAZ tool's purpose. An agent would struggle to route queries correctly.
Naming mixes bare verbs (`connect`, `authenticate`), verb_noun imperative (`report_bug`, `show_version`), bare noun phrases (`marketplace`, `toolkit_info`), and concludes with the odd spaghetti `sefaz_al_certidao_debitos_consultar` — the only Portuguese token placed after a snake_case domain prefix. The dominant C#-style Invoke-Verb pattern is absent; instead there's no consistent verb tense or word order, forcing the agent to memorise each call signature.
At seven tools, the raw number is well within the ideal 3–15 range and the server is easy to enumerate. However, six of those tools are unrelated to the named 'Certidão Negativa' mission and look like platform plumbing bolted on; only one tool actually queries the certidão. It feels like a small internal platform server that happens to expose a single Brazilian tax-certificate lookup.
For the narrow 'consultar certidão' purpose, the single query tool technically completes the core workflow. However, the SEFAZ feature surface is bare — no endpoint to validate a certidão number, list emissions, or check status — while the platform side is over-covered with marketplace, auth, bug, and version tools, leaving the actual product under-served.
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?
Even with annotations indicating readOnlyHint=false and idempotentHint=true, the description adds valuable context: it discloses the browser login flow, user interaction, permanence of config-based vs session-only, and token format (JWT). 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 slightly long but each sentence adds value, front-loading the purpose and then detailing options. It's structured with a 'best' recommendation and an alternative, making it easy to parse.
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 moderate complexity (authentication flow, two modes, one optional param) and no output schema, the description covers essential use cases, configuration vs session, and token details. It is complete enough for an agent to 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?
The schema has zero description coverage, but the description explains the token parameter (JWT for session-only) and its usage, plus the no-args behavior. This compensates well for the bare 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 tool's purpose: to authenticate with MCP.AI. It specifies the resource (authentication) and distinguishes between two modes (permanent config-based vs session-only), which differentiates it from sibling tools like 'connect' that 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?
Provides explicit when and how to use: log in via browser, copy token, and either add to config for permanent access or paste for session use. It also mentions calling with no args to get the link. Though it doesn't explicitly state when NOT to use, the alternatives are clear.
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 establish read-only, idempotent, non-destructive behavior. The description adds useful conditional semantics: authenticated:true with empty pending[] when all providers are connected, and connect_url when credentials are missing. 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?
Two sentences with dense, useful information. The opening sentence states the core purpose, and the second sentence explains the two relevant outcome branches. No filler or redundant wording.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the low complexity (no parameters, no output schema, and clear annotations), the description covers the main return behaviors well. It could go slightly deeper into the full set of states, but for this tool the provided information is largely 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 parameter semantics are inherently minimal. The description still helps by explaining the meaning of the result under different credential states, which is appropriate for a parameter-less 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 a specific verb ('Returns') and names the resource clearly ('connection status and URLs'). It immediately signals what the tool does and the conditional authenticated/pending states help distinguish it from related tools like 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 gives clear context for when calling this tool is meaningful: check connection status, and if credentials are missing, obtain connect URLs. It does not explicitly name alternatives or exclusion criteria, but the intent is evident from the conditional behavior described.
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?
The description discloses key behavioral details: invoke works even for non-installed MCPs, returns connect/checkout links when needed, installs add tools permanently, writes require owner/admin, and search/describe mark installed indicator. These details go beyond annotations and align with them, so 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 front-loaded with the core definition and valuable flow. It is long but every sentence adds value. It would benefit from a structure with bullets or sections because it blurs MCP catalog, invoke, install/subscribe, and prompt-library into one large paragraph.
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 size and complexity of the tool, the description is unusually complete: it says when to use invoke vs install, lists both auth and payment side-effects, explains installed flags, and describes the prompt library portions. It still has gaps around many input parameters and generic fallback behaviors, but no output schema and no per-property descriptions make those gaps harder to resolve.
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 has 23 parameters at 0% description coverage, so the text carries a lot of the burden. It does explain the main action values and core variables such as tool_id, prompt_slug, prompt variables, and cancel reasons. However, parameters like immediate, tier_slug, conversation, request_details, prompt_targets, and many optional fields still have no meaningful description, leaving gaps.
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 a strong identity and resource: the official mcp.ai marketplace and the way to search, describe, and run MCP tools. It differentiates itself from sibling tools by walking through the catalog flow and describing each action family correctly.
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?
Explicit usage guidance is present: use install only for making an MCP permanent, prefer invoke for one-off use, list_tools for current callable tools, subscribe/cancel for billing, report_bug for feedback, and request_mcp when nothing fits. This clearly distinguishes the main workflow from alternative tools/actions.
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 | [] |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already disclose that the tool is idempotent (idempotentHint: true) and non-destructive (destructiveHint: false). The description adds the context that the conversation array is needed for reproduction, which gives a hint about how the tool behaves (collects context). However, it does not describe side effects, response handling, or other behavioral details. With annotations present, the bar is lower, and the description adds some value, so a 3 is appropriate.
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: two sentences that front-load the purpose and then provide a key usage detail. Every word earns its place. There is no fluff or repetition. It is appropriately structured for a simple tool.
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 is simple (3 params, no output schema, no nested objects), and the description covers the essential aspects: what it does and a key parameter. It does not explain return values but no output schema exists. It could mention that it sends a report and maybe the result, but for a low-complexity tool the description is adequate. Minor gaps like not mentioning that 'message' is required or what 'context' is keep it from being a 5.
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 has no parameter descriptions (coverage 0%), so the description must compensate. It explicitly explains the 'conversation' parameter ('Include the conversation array with recent messages for reproduction.') but does not elaborate on 'message' or 'context'. 'message' is fairly obvious from the purpose, but not explicitly stated. Overall, it adds some semantic meaning but is incomplete, warranting a 3.
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: 'Report a bug, missing feature, or send feedback.' It uses specific verbs and a resource (bug report/feedback), and it is distinct from sibling tools which are unrelated (auth, connection, marketplace, etc.). The intended action is unambiguous.
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 a concrete usage instruction: 'Include the conversation array with recent messages for reproduction.' This indicates when and how to use the tool. However, it does not explicitly mention when not to use it or alternative tools, but given the sibling tools are unrelated, it is relatively clear. It lacks explicit exclusions but is adequate for context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
sefaz_al_certidao_debitos_consultarARead-onlyIdempotentInspect
SEFAZ AL: 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 |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnly, idempotent, and non-destructive behavior. The description adds meaningful context beyond annotations: no platform credentials, pay-per-query billing, non-confidential data, and LGPD controller responsibility. 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 compact and front-loaded with the main purpose. The additional sentences about payment, official data, and LGPD are relevant and not excessive.
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 is simple and covered by strong annotations, but with no output schema and no parameter documentation the description should at least clarify that CPF/CNPJ identifies the taxpayer and what the returned certificate is. It is adequate but leaves those operational details implicit.
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 has 0% description coverage and the tool description does not mention CPF/CNPJ, whether either is required, or how to choose between them. The names are self-explanatory, but the description does not compensate for the low schema coverage.
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 explicitly names the resource (SEFAZ AL Certidão Negativa de Débitos) and the action (consulta em fonte oficial). It is specific enough to distinguish this tool from the unrelated sibling 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?
It explains when the tool is appropriate: querying official Brazilian sources, using prepaid credits, and without platform credentials. It does not explicitly state when not to use it, but there are no obvious alternative siblings.
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 cover safety (readOnlyHint, idempotentHint, destructiveHint). The description adds no additional behavioral context such as side effects, authentication needs, or return format, providing no value beyond 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?
One sentence, concise, and front-loaded with the action. No unnecessary words or filler.
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?
While the tool is simple and the description covers the purpose, it does not describe the return format or expected output. Since there is no output schema, this leaves some ambiguity, but for a version query it may be acceptable.
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 there is nothing to describe. Per the rubric, 0 params gets a baseline of 4.
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?
Description clearly states the tool shows current MCP platform and adapter versions, using a specific verb ('show') and resource. It is distinct from sibling tools like authenticate or report_bug, 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 does not provide explicit guidance on when to use or not use this tool, nor does it mention alternatives. However, the purpose is self-evident, so usage is implied but not explicitly stated.
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?
Annotations already declare readOnly, idempotent, and non-destructive behavior. The description adds detail on what data is returned, which is transparent. No contradictions.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
One concise sentence that lists all relevant output aspects without redundancy. No unnecessary 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?
Given no output schema, the description fully explains what the tool returns. It is complete for understanding the tool's functionality and does not require additional 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?
The input schema has zero parameters, and the description correctly explains the tool's purpose without needing to clarify inputs. Full coverage by 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?
Clearly states it returns the current toolkit state, listing specific information (installed MCPs, connection status, accounts, catalog tool counts). This distinguishes it from sibling tools like show_version or sefaz_al_certidao_debitos_consultar.
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 toolkit state, but does not explicitly state when to use it versus alternatives. However, given the read-only informational nature, it is reasonably clear for typical use cases.
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
- Alicense-qualityCmaintenanceA read-only MCP server that provides official State of Alagoas (SINTEGRA AL) tax registration data queries via a hosted, pay-per-use API, with a single tool for consultation.MIT
- Alicense-qualityCmaintenanceEnables querying Brazilian state tax clearance certificates (Certidão Negativa de Débitos Estaduais) from official sources via a read-only, hosted MCP tool with pay-per-use access.MIT
- Alicense-qualityCmaintenanceEnables consulting SEFAZ PE negative debt certificates from an official source, using a single read-only tool. Works with any MCP client and charges per use with prepaid credits.MIT
- -license-qualityCmaintenanceProvides 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.
Your Connectors
Sign in to create a connector for this server.