SEFAZ CE: Emissão de DAE
Server Details
SEFAZ CE: Issuance de DAE, official-source lookup. Platform-hosted, pay per query with prepaid credi
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- mcp-dir/sefaz_ce_emissao_dae-mcp
- GitHub Stars
- 0
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.
Most tools have distinct purposes (auth, status, marketplace, bug reporting, version, toolkit info, domain query). However, 'connect' and 'toolkit_info' overlap in reporting connection state and URLs, causing potential confusion.
Tool names mix single words ('authenticate', 'connect'), snake_case ('report_bug', 'show_version', 'toolkit_info'), and a long domain-specific name ('sefaz_ce_emissao_dae_consultar'). No clear verb-noun pattern; the domain tool is an outlier.
Seven tools is not excessive, but six are generic platform utilities (auth, connect, marketplace, etc.) unrelated to the server's stated DAE domain. Only one domain-specific tool exists, making the set feel bloated for its core purpose.
The server's name suggests 'Emissão de DAE' (issuance), but only a 'consultar' (consult) tool is provided. There is no tool for actually emitting or creating a DAE, and the platform tools do not address the domain, leaving a significant gap.
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?
Annotations already indicate idempotent and non-destructive behavior. The description adds value by explaining the permanent vs session distinction, the need for browser interaction, and the token handoff process. It does not contradict any annotations. It also reveals that calling with no args returns a login link, which is a useful behavior insight.
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 but well-structured with 'Best:' and 'Or' to delineate options. It is somewhat wordy but every sentence conveys necessary information: the login flow, the permanent header method, and the session token method. It front-loads the purpose and then explains both paths, making it easy to scan.
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 an authentication tool with one optional parameter and no output schema, the description adequately explains the process and outcomes. It covers the two login modes, what to do with the token, and the no-argument behavior. It does not mention return values, but given the tool's nature and lack of output schema, this is a minor omission. The description is complete enough for an agent to use it 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 input schema has an optional 'token' parameter with zero description (0% schema coverage). The description compensates by explaining the token's purpose: it is the JWT to be pasted for session-only login. It also explains the alternative of setting it as a header, providing full context for how the parameter is used. This goes beyond the schema's bare field definition.
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, specifically for IDE agents. It specifies the verb (log in, authenticate) and the resource (MCP.AI server), and it distinguishes itself from sibling tools like 'connect' by detailing the token-based authentication flow. It is unambiguous and directly names the tool's function.
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 usage instructions: it explains two modes (permanent via header config, and session-only by pasting token), and tells the user to call with no args to get the link. It does not explicitly mention when not to use it or compare to alternatives like 'connect', but the context is clear. The guidance is actionable and covers the primary use cases.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
connectARead-onlyIdempotentInspect
Returns connection status and URLs. When all providers are connected, returns authenticated:true and empty pending[]. When credentials are missing, returns connect_url for the toolkit and per-install URLs.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, idempotentHint, and destructiveHint, lowering the burden. The description adds useful behavioral detail about conditional return values: authenticated:true with empty pending[], or connect_url and per-install URLs when credentials are missing. This goes beyond the annotations but does not detail the meaning of 'pending' or 'per-install 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, and contains no filler. Every sentence adds meaningful detail about the tool's behavior.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a zero-parameter, read-only status tool with strong annotations, the description is reasonably complete. It explains the primary return values and the missing-credentials case, though terms like 'providers' and 'per-install URLs' could be slightly clearer.
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 schema description coverage is 100%, so the baseline is 4. The description does not need to explain parameters, and it correctly focuses on output behavior instead.
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,' which is a specific verb and resource. It distinguishes itself from siblings such as authenticate by clarifying this is a read-only status/URL retrieval rather than an action, and provides concrete output scenarios.
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 when to use the tool by describing conditions ('When all providers are connected... When credentials are missing...'), but it does not explicitly compare to alternatives or state when not to use it. It lacks direct guidance such as 'use authenticate when credentials need to be established.'
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 traits not captured by annotations: invoke runs uninstalled MCPs one-off without bloating the tool list, auth and payment failures return connect/checkout links, write-like operations require owner/admin, and search/describe flag installed vs. workspace tooling. This gives the agent important expectations about side effects and prerequisites.
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 dense and information-rich, but it is a long stream-of-consciousness paragraph with awkward wording ('pontualmente') and no clear structural separation between the main tool actions, write protections, and prompt library features. It would benefit from shorter sections or bullet-like clarity while keeping the same 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 tool with 23 parameters and no output schema, the description covers a lot: the core flow, one-off invocation behavior, auth/payment handling, owner permissions, and the prompt library sub-commands. It is still incomplete on concrete request/return formats and several secondary parameters, but on the whole it gives an agent enough context to choose and drive 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?
With 23 parameters and 0% schema description coverage, the description carries most of the burden but only meaningfully explains the `action` concept and a few related terms (tool_id, arguments via profile, prompt fields). Many parameters such as `limit`, `immediate`, `tier_slug`, `request_name`, `cancel_reason`, and `report_context` are left undocumented.
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 defines the marketplace as the in-platform catalog and execution layer for MCP/tool discovery, profiling, and invocation. It explicitly explains the core action flow (search → describe → invoke), making it easy to distinguish from sibling tools like report_bug, show_version, or toolkit_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?
It gives explicit usage guidance: use invoke for one-off runs, install only for permanent toolkit addition, list_tools for currently callable tools, request_mcp when nothing fits, and report_bug for feedback. It also states when write operations are allowed (workspace owner/admin), which clarifies when to call vs. defer.
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 declare idempotentHint=true, readOnlyHint=false, and destructiveHint=false, covering the basic safety profile. The description adds guidance about the conversation array but doesn't disclose additional behavioral traits such as response handling or rate limits. With annotations present, this is adequate but not rich.
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 wasted words. It front-loads the purpose and then provides a practical reproduction instruction, making it efficient and well-structured.
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 bug-reporting tool with no output schema and annotations covering safety, the description is sufficient. It clearly states purpose and gives a specific reproduction hint. Minor gaps like the exact role of 'context' and post-submission behavior don't significantly detract from its completeness.
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 explains 'conversation' as recent messages for reproduction and implies 'message' is the content of the report. However, 'context' remains unexplained, leaving some ambiguity. This partial compensation warrants a mid-range score.
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 'Report a bug, missing feature, or send feedback,' providing a specific verb and resource. This distinguishes it from sibling tools like authenticate, connect, and sefaz_ce_emissao_dae_consultar, 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 gives clear context: use this tool to report bugs, missing features, or feedback, and instructs to include the conversation array for reproduction. It does not explicitly mention when not to use it, but the context is specific enough without needing exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
sefaz_ce_emissao_dae_consultarARead-onlyIdempotentInspect
SEFAZ CE: Emissão de DAE, 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 | Yes | ||
| chassi | Yes | ||
| numero_inscricao | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations clearly indicate this is a read-only, idempotent, non-destructive operation, and the description reinforces that without contradicting annotations. The description adds behavioral context: it is hosted by the platform, requires no platform credentials, is pay-per-query with prepaid credit, and returns non-confidential official data. It also mentions data controller responsibility, which is extra context. No contradiction detected.
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 of moderate length, but it front-loads the core purpose and then covers hosting, payment, and legal aspects. Each sentence adds value, though the LGPD sentence is somewhat tangential. It is not overly long, but could be more concise by removing legal boilerplate. It is structured with a logical flow from purpose to operational details.
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 (3 params, no output schema, annotations provide safety profile), the description is fairly complete. It explains the tool is a paid read-only query to official data, which addresses usage and behavioral aspects. However, it does not explain what the tool returns (output structure) or how the query works (e.g., one query per CPF/chassi), but with no output schema and simple params, this might be adequate. The legal warning adds context. It could be more complete by specifying the exact inputs needed, but it is not severely lacking.
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 provides three parameters (cpf, chassi, numero_inscricao) with no descriptions, and the description does not explain any of them. Since schema coverage is 0%, the description should compensate, but it does not. However, the parameter names are self-explanatory (CPF, chassis, registration number), and the required ones (cpf, chassi) are likely identifiers for the DAE query. The description could have elaborated on the meaning of each, but the names give some context. This is a baseline score for a description that adds no extra parameter details.
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 specifies the tool's purpose: to issue DAE (emission) and consult from official source, which is clear. However, it does not explicitly distinguish it from potential sibling tools (no direct siblings related to DAE are present, but the name is similar to other SEFAZ tools). The purpose is specific to a resource (DAE) and action (consult/issue), which is good, but it could be clearer that 'emissão' is a query for issuance information, not an actual creation.
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 that it should be used for consulting DAE information from official Brazilian sources, and mentions it is paid with prepaid credit, which gives context on when to use it (when needing official DAE data). It does not explicitly state when NOT to use it or provide alternatives. The mention of LGPD and controller responsibility is more legal than usage. Sibling tools are unrelated, so no explicit differentiation is needed.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
show_versionARead-onlyIdempotentInspect
Show the current MCP platform and adapter versions.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the tool's safety profile is covered. The description adds the specific scope (platform and adapter versions) but provides no additional behavioral details such as output format or failure modes.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, clear, well-structured sentence. It immediately states the tool's function with no wasted 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?
This is a simple, parameterless version-information tool. The description fully conveys what the tool does and what it reports, and no output schema is needed because the output is self-describing as '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 has zero parameters and the schema is complete, so the description need not explain parameter semantics. The baseline for zero-parameter tools is 4, and the description adds no conflicting or missing parameter information.
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 verb and resource: 'Show the current MCP platform and adapter versions.' This is specific and distinct from sibling tools such as authenticate or marketplace, which serve different purposes.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description makes its usage context clear: use it when you need to know the current platform and adapter versions. No exclusions or alternatives are mentioned, but for a simple informational tool this is sufficient.
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 readOnlyHint, idempotentHint, and destructiveHint, covering safety. The description adds meaningful context by detailing the exact state information returned (MCPs, connection status, accounts, tool counts), which is beyond mere annotation repetition.
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, front-loaded sentence stating the purpose and then enumerating the specific data items delivered. No wasted words; every clause adds value.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With no parameters and no output schema, the description carries the full burden of explaining return contents. It lists four distinct categories of information, making the tool's output predictable and complete for an info-only operation.
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 schema coverage is trivially 100% and the baseline is 4. The description appropriately focuses on the return payload rather than parameters, and no additional parameter semantics are needed.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb ('Returns') and identifies the exact resource ('current toolkit state'), then lists concrete components: installed MCPs, connection status, accounts, and catalog tool counts. This clearly 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 context—use this to inspect toolkit status—but does not explicitly state when to use it versus alternatives or provide exclusions. Clear context is present, but explicit guidance is missing.
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
- AlicenseNot gradedqualityCmaintenanceEnables users to query official SEFAZ CE Cupom Fiscal Eletrônico (SAT) data through a hosted, read-only MCP server with prepaid per-query credits.MIT
- AlicenseNot gradedqualityCmaintenanceRead-only MCP server for querying official SEFAZ CE NFC-e (Brazilian electronic invoice) data through a single hosted tool, with prepaid per-use pricing.MIT
- AlicenseNot gradedqualityCmaintenanceEnables users to query SEFAZ CE regularity certificates (Certidão de Regularidade) from official sources, providing read-only access for tax compliance verification in the state of Ceará, Brazil.MIT
- AlicenseNot gradedqualityCmaintenanceEnables querying SEFAZ's centralized taxpayer registration (CCC) from the official source via a read-only tool. Pay-per-use with prepaid credits.MIT