SEFAZ PI Visualizar certidões CNDA: CND
Server Details
SEFAZ PI Visualizar certidões CNDA: CND, official-source lookup. Platform-hosted, pay per query with
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- mcp-dir/sefaz_pi_visualizar_cert-mcp
- GitHub Stars
- 0
- Server Listing
- SEFAZ PI Visualizar certidões CNDA: CND
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 platform tools are largely distinct: authenticate, connect, marketplace, report_bug, show_version, and toolkit_info each have clear roles. The single SEFAZ tool is unambiguous. Minor overlap exists between marketplace (catalog/install) and toolkit_info (current state) that could cause slight confusion.
Naming is inconsistent: some tools are single words (authenticate, connect), others are snake_case multi-word (report_bug, show_version, toolkit_info), and the domain tool uses a completely different prefix (sefaz_pi_visualizar_cert_consultar). There is no consistent verb_noun pattern.
Seven tools is a reasonable count for an MCP platform server that includes a single domain-specific query. It's not excessive, and each tool serves a distinct purpose within the platform management scope.
Platform utilities are relatively complete for managing MCPs, but the primary domain of SEFAZ PI certificate viewing is covered by only one consult tool. This may suffice for a simple query, but there are no additional operations such as listing or history, leaving minor gaps.
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?
With annotations only supplying idempotentHint=true and readOnlyHint=false, the description adds meaningful behavioral context: the permanent vs. session-only distinction, how to call with/without args, and the non-expiring nature of the header-based connection. Doesn't mention error or failure behavior, which would round it out.
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 dense three-sentence description where every clause earns its place: audience, recommended approach, fallback approach, and invocation semantics. It's a bit run-on and mixes setup guidance with call signatures, but it's front-loaded and contains zero fluff.
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 single optional-param tool with no output schema, the description covers both invocation modes and their persistence trade-offs thoroughly. An agent could drive the full flow without consulting external docs. It doesn't cover response shapes or error cases, but nothing here is incomplete enough to drop below a 4.
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 coverage is 0% and the token param has no description, so the description carries the full weight — and it does so well by explaining the token is a JWT pasted by the user and that calling with no args yields the login link. Slightly more detail on the JWT's origin or validation could push this to 5.
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 conveys the verb+resource ('log in in the browser, copy the access token') and names the target audience (MCP.AI for IDE agents like Cursor). It's unambiguous about what the tool does, though it doesn't explicitly differentiate itself from a sibling like `connect` — a 5 would require that explicit sibling distinction.
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 guidance on when to use what: the 'Best' permanent approach (server config header) vs. session-only login via the token argument. This effectively scopes the tool's two usage modes, though it doesn't cover when NOT to use the tool or name alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
connectARead-onlyIdempotentInspect
Returns connection status and URLs. When all providers are connected, returns authenticated:true and empty pending[]. When credentials are missing, returns connect_url for the toolkit and per-install URLs.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, which align with a safe status query. The description adds useful behavioral context: the exact meaning of authenticated:true and the presence of pending[], plus the per-install URLs. No contradiction found.
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 concise sentences that front-load the core purpose, then explain the two key states. Every word earns its place, with no filler or redundant restatement.
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 status tool with clear annotations and a description that covers the two possible outcomes, the description is complete. It also gives enough context to distinguish from authentication and connection setup actions. No output schema, but the description covers the returned fields adequately.
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 schema coverage is 100% (vacuously). The description provides rich semantic detail about the output and conditions, which is the relevant 'parameter' here. With no params, the baseline is high, and the description exceeds expectations by explaining the response semantics.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool returns connection status and URLs, with specific conditions for when authenticated:true and empty pending[] are returned, and when connect_url is provided. It distinguishes this from siblings like authenticate and show_version by focusing on status/reporting rather than action or version info.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies when to use this tool: to check connection status and obtain URLs for setup. It provides clear context on what the output means (authenticated vs. missing credentials) but does not explicitly state when not to use it or mention alternatives. However, given the simple status-query nature, this is acceptable.
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?
Even with annotations, the description adds meaningful behavioral context: invoke runs MCPs even when not installed, does not bloat the tool list, may return connect or checkout links, and install makes tools permanently available. Permission and login requirements are disclosed accurately, and nothing contradicts 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 it is front-loaded, procedural, and dense with useful information rather than filler. The core flow, distinctions between invoke/install, payment/credential behavior, permissions, and the prompt-library subsection are logically organized, though heavier structure or bullets would make the 23-parameter surface easier 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?
Given a complex dispatcher-style tool, no output schema, and no parameter descriptions, the description covers the primary flows, auth/payment outcomes, permission constraints, and the prompt library surprisingly well. Minor gaps remain, such as resume, immediate, tier_slug, and detailed cancellation/report parameter behavior, but the overall tool context is complete enough for an agent to act effectively.
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 with 0% description coverage, so the tool description carries the responsibility, and it does much of that work: action values, mcp_id, tool_id, arguments, query, and prompt fields are given real semantics through the core flow and prompt-library explanation. Some parameters remain opaque (e.g., immediate, tier_slug, cancel_reason, prompt_targets), which keeps this from a 5, but the description 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 defines the marketplace as the central MCP catalog and execution surface, with explicit verbs for each capability: search, describe, install, uninstall, subscribe, cancel, list_tools, request_mcp, and the prompt-library actions. It distinguishes the marketplace from sibling tools by making its resource (catalog + runner + prompt library) concrete and by outlining a core flow rather than just restating the name.
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 exceptionally explicit usage guidance: prefer invoke for one-off use, use install only for permanent toolkit membership, use request_mcp when nothing fits, and use list_tools to see what is callable now. It also notes that write actions require workspace owner/admin privileges and that credential/payment failures map to connect/checkout links before retrying.
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 establish non-read-only, idempotent, and non-destructive behavior. The description adds context about including the conversation array for reproduction, which is a behavioral nuance. It does not disclose side effects like where the bug report goes, but with annotations covering safety, this is adequate.
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 only two sentences, front-loaded with the purpose and then a key usage note. Every word contributes to understanding, with no filler or redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple bug-report tool with no output schema, the description covers the core action and highlights the most important parameter. It lacks any mention of return values or post-call behavior, but given the tool's low complexity, this is a minor gap. Overall, it is sufficient 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?
Schema coverage is 0%, so the description must compensate. It explains the 'conversation' parameter's purpose ('recent messages for reproduction') but does not clarify 'context' or 'message' beyond what their names imply. This gives partial parameter guidance but not full coverage of all three parameters.
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 that distinguishes it from sibling tools like authenticate and connect. The purpose is unambiguous and immediately understandable.
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 indicates when to use the tool ('Report a bug, missing feature, or send feedback') and provides a concrete instruction ('Include the conversation array with recent messages for reproduction'). However, it does not explicitly mention alternatives or exclusions, though siblings are unrelated so no conflict is expected.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
sefaz_pi_visualizar_cert_consultarARead-onlyIdempotentInspect
SEFAZ PI Visualizar certidões CNDA: CND, 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 | ||
| tipo_certidao | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate readOnlyHint and idempotentHint, but the description adds valuable behavioral context: no platform credentials are needed, payment per query is required, data is public (not confidential), and the client is the data controller under LGPD. These details go beyond annotations and clarify operational constraints without contradicting them.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a concise paragraph that front-loads the core purpose in the first sentence. It then adds payment and data nature details. While the LGPD disclaimer and repeated emphasis on data being public add some redundancy, the overall structure is efficient and each sentence contributes useful context.
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 absence of an output schema and 0% parameter descriptions, the description should provide complete guidance on query construction. It covers payment and data nature but omits critical instructions: whether cpf or cnpj is mandatory, how to specify the certificate type, and what the response will contain. This leaves a significant gap for an agent to use the tool 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 0% description coverage, leaving the description responsible for clarifying parameters. However, it only vaguely references 'certidões CNDA' and does not explain the meaning or usage of 'tipo_certidao', 'cpf', or 'cnpj' beyond their names. It fails to compensate for the schema's lack of descriptions, offering no guidance on which identifiers are required or their formats.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's function: 'SEFAZ PI Visualizar certidões CNDA: CND, consulta em fonte oficial.' It names the specific action (visualizar/consultar) and resource (certidões CNDA). This distinguishes it from sibling tools (authenticate, connect, marketplace, etc.) which operate on platform-level concerns, making its purpose 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 clear context on usage: the tool is hosted by the platform, requires no platform credentials, and charges per consultation with prepaid credit. It implies usage for querying official Brazilian tax certificates. However, it does not explicitly state when to use this tool over alternatives or mention any exclusions; because siblings are unrelated, this absence is minor but prevents a perfect score.
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 safety profile is well-covered. The description adds minimal behavioral context beyond that; it doesn't describe output format or that it might require an active connection, but the annotations carry most of the burden.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, concise sentence that says exactly what the tool does with no filler. It is appropriately front-loaded and every word 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?
For a simple, zero-parameter, read-only tool, the description is complete. It doesn't need to explain return values since no output schema existsholed, but it could mention what the output looks like. However, given the tool's simplicity, the information is 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?
There are no parameters, and the schema covers 100% (empty). The description does not need to explain parameters. Since there are no parameters, the baseline is 4, and the description doesn't detract from that.
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 show current MCP platform and adapter versions. It uses a specific verb ('show') and names the resources (MCP platform and adapter versions). While it doesn't explicitly distinguish from siblings, the purpose is unambiguous and not a tautology.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies when to use it (when you need version information) but does not provide explicit guidance on when not to use it or alternatives. With no parameters and a clear purpose, it's adequate but lacks explicit context.
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=true and destructiveHint=false, so no contradiction. The description goes beyond annotations by detailing the specific return contents (installed MCPs, connection status, accounts, tool counts), which helps the agent understand what to expect. It does not discuss potential latency or side effects, but none are indicated for a read-only state query.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, information-dense sentence that front-loads the action ('Returns') and concisely enumerates the output components. Every word earns its place, with no redundancy 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?
For a read-only tool with no parameters and no output schema, the description fully covers what the tool does and what it returns. It is complete and self-sufficient, leaving no significant gaps for the agent to infer.
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 shows an empty properties object. With 0 parameters, the baseline is 4, and the description correctly focuses on the output rather than inputs. 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 the specific verb 'Returns' and identifies the resource as 'current toolkit state', listing concrete elements (installed MCPs, connection status, accounts, catalog tool counts). This clearly distinguishes the tool from siblings like authenticate or show_version, 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 provides clear context by stating exactly what information the tool returns, implicitly indicating it should be used when an overview of the toolkit's connections and tool counts is needed. It does not explicitly mention alternatives or when not to use it, but the uniqueness of the tool among siblings makes this omission minor.
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-qualityCmaintenanceMCP server to request negative certificate of active debt (CNDA) from SEFAZ PI, using official sources.MIT
- Alicense-qualityCmaintenanceProvides read-only consultation of official SEFAZ Paraíba negative debt certificates, enabling users to check tax debt status via a single tool.MIT
- Alicense-qualityCmaintenanceEnables querying SEFAZ Ceará tax clearance certificates (Certidão Negativa de Débitos) from official sources, read-only.MIT
- -license-qualityCmaintenanceConsulta a Certidão Negativa de Débitos em fonte oficial da SEFAZ RJ, com uma ferramenta de leitura via MCP over HTTP, hospedada na plataforma com crédito pré-pago.
Your Connectors
Sign in to create a connector for this server.