SEFAZ MA: Certidão de Dívida Ativa
Server Details
SEFAZ MA: Certificate de Dívida Ativa, official-source lookup. Platform-hosted, pay per query with p
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- mcp-dir/sefaz_ma_certidao_divida_ativa-mcp
- GitHub Stars
- 0
- Server Listing
- SEFAZ MA: Certidão de Dívida Ativa
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.3/5 across 7 of 7 tools scored.
The domain-specific tool (sefaz_ma_certidao_divida_ativa_consultar) is clearly distinct from the platform utilities. However, the 'marketplace' tool introduces a meta-layer that allows invoking arbitrary MCPs, which could confuse agents expecting only SEFAZ-related functionality. The connection/auth tools are also somewhat overlapping in purpose.
Naming is inconsistent: the domain tool uses a long snake_case descriptor (sefaz_ma_certidao_divida_ativa_consultar), while platform tools use short camelCase verbs (authenticate, connect, report_bug) or noun-style names (marketplace, toolkit_info). No clear pattern emerges.
Seven tools is within the typical range, but only one directly serves the declared purpose. The other six are generic platform utilities (auth, connection, version, feedback) that bloat the surface area for what should be a focused service. Feels padded rather than well-scoped.
For the core domain of consulting a Certidão de Dívida Ativa, a single query tool might suffice. However, the generic utilities do not fill any domain-specific gaps (e.g., no tool for listing certificates, checking status, or handling multiple queries). The surface is minimal but functional for a simple lookup.
Available Tools
7 toolsauthenticateAIdempotentInspect
MCP.AI for IDE agents (Cursor, etc.): log in in the browser, copy the access token. Best: add it to this server's config as a header Authorization: Bearer <token> for a permanent, non-expiring connection. Or paste it here for a session-only login: call with { token: "" } after the user pastes, or with no args to get the link.
| Name | Required | Description | Default |
|---|---|---|---|
| token | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description discloses behavioral details beyond annotations: it explains that the config approach yields a permanent non-expiring connection while pasting the token results in session-only login, and that calling with no args returns a link. This adds context about the tool's outcomes and side effects. Annotations provide idempotentHint=true and destructiveHint=false, which align with these behaviors. The description adds value by clarifying the two distinct modes of operation.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is moderately long but well-structured, front-loading the purpose and then providing two clear options. Every sentence contributes useful information (purpose, best practice, session method, and link generation). It could be slightly trimmed but remains efficient for a tool with multiple usage modes.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's simplicity (one optional parameter, no output schema, no nested objects), the description adequately covers how to invoke it and what to expect in terms of outcomes (link or token configuration). It does not describe the return format, but for a simple authentication tool without an output schema, this is acceptable. The description is sufficient for an agent to correctly use the tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Although schema description coverage is 0%, the description fully explains the 'token' parameter: it is optional and can be provided as a JWT after the user pastes it, or omitted to receive a login link. It clarifies the parameter's role and conditions for use, going beyond what the schema (which only defines type) provides.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: authenticating an IDE agent by logging in via browser and obtaining an access token. It specifies the verb 'authenticate' and the resource (MCP.AI) accurately. It also differentiates from siblings like 'connect' by focusing on the authentication workflow, though it doesn't explicitly contrast with them, its specificity is sufficient.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives explicit usage instructions: 'Best: add it to this server's config as a header...' for a permanent token, or 'paste it here for a session-only login' with token parameter, or 'call with no args to get the link'. It clearly distinguishes between permanent and session options, providing direct guidance on when to use each method, effectively covering 'when to use' and 'how to use'.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
connectARead-onlyIdempotentInspect
Returns connection status and URLs. When all providers are connected, returns authenticated:true and empty pending[]. When credentials are missing, returns connect_url for the toolkit and per-install URLs.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
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 valuable conditional behavior: returning authenticated:true and empty pending[] when all providers are connected, and connect_url plus per-install URLs when credentials are missing. However, it does not address partial connection states, which is a minor gap.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise, with exactly two sentences that front-load the core purpose and then explain key behaviors. Every word earns its place, with no fluff or excessive detail.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple, zero-parameter, read-only tool with no output schema, the description covers the two most important scenarios (all connected, missing credentials). However, it does not mention partial connection states or what happens when some providers are connected and others are not, which would make it more complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
There are zero parameters, so the description carries no burden for parameter semantics. The schema is trivially complete with 100% coverage. The baseline for 0 params is 4, and there is no need for additional parameter-related context.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states what the tool does: 'Returns connection status and URLs.' It distinguishes itself from sibling tools like 'authenticate' by focusing on status retrieval rather than performing an authentication flow. The mention of specific return values in different connection states further reinforces its unique purpose.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies the tool is used for checking connection status and URLs, but it does not explicitly state when to use this tool versus alternatives (e.g., 'authenticate'). It provides context about the scenarios it covers (all connected vs. missing credentials) but lacks explicit when-to-use or when-not-to-use guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
marketplaceAInspect
The official mcp.ai marketplace — the in-platform catalog of every MCP/tool, AND the way to run them. Covers capability requests like "find an MCP that does X", "consulta um CPF", "is there a tool for Y". Core flow: action=search discovers MCPs by intent → describe returns one MCP's full profile (every tool with its id + params, pricing, auth) so you pick the right tool_id → invoke RUNS that tool. KEY: invoke works even when the MCP is NOT installed — it runs the tool pontualmente (one-off), without adding the MCP to the toolkit and without bloating the tool list. If the MCP needs a credential/login, invoke returns a connect link; if it is paid and the wallet is empty, invoke returns a checkout/top-up link (the user opens it, then you retry). Use install only to make an MCP PERMANENT in the active toolkit (its tools then show up natively in future sessions); prefer invoke for a single/occasional use. list_tools lists what is callable right now. subscribe/cancel handle per-MCP billing; report_bug sends feedback; request_mcp asks us to build a NEW MCP when nothing fits. Search/describe flag installed_in_toolkit vs installed_in_workspace. Writes (install/uninstall/subscribe/cancel and the one-off install behind invoke) require workspace owner/admin. It also carries the mcp.ai PROMPT LIBRARY, which is about ready-made prompt TEXT rather than MCPs: search_prompts finds one, get_prompt returns its full text with {{variables}} filled, and publish_prompt saves a prompt and returns a shareable mcp.ai/p/ link that opens without login.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | ||
| query | No | ||
| action | No | search | |
| mcp_id | No | ||
| message | No | ||
| tool_id | No | ||
| arguments | No | {} | |
| immediate | No | ||
| tier_slug | No | ||
| prompt_body | No | ||
| prompt_slug | No | ||
| prompt_tool | No | ||
| prompt_vars | No | {} | |
| conversation | No | [] | |
| prompt_title | No | ||
| request_name | No | ||
| cancel_reason | No | ||
| cancel_comment | No | ||
| prompt_targets | No | ||
| report_context | No | ||
| prompt_category | No | ||
| request_details | No | ||
| prompt_description | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description richly discloses behavior beyond annotations: invoke runs one-off without bloating the toolkit, missing credentials produce a connect link, empty wallets produce a checkout/top-up link, and installed flags are surfaced by search/describe. These are meaningful behavioral traits not encoded in the annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is long but well-structured, starting with a clear summary and then using a core-flow narrative that covers search, describe, invoke, install, billing, and the prompt library. A few promotional or repeated phrases could be trimmed, but the density is justified by the broad scope.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a tool with 23 parameters, no output schema, and many sub-actions, the description is remarkably complete: it explains auth, billing, one-off execution, permanent install, and the prompt library. It misses the `resume` action and does not detail every parameter or output shape, but overall it provides enough context to select and invoke correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description carries the semantic burden. It adds real meaning by explaining the action flow, tool_id selection, arguments, and prompt variables, and it names many parameters indirectly (prompt_body, prompt_slug, cancel_reason, etc.). However, not all 23 parameters are individually explained, and some like `resume` and `conversation` are not described.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly identifies the tool as the official mcp.ai marketplace and states its dual purpose: discovering MCPs and running them. However, it defines an umbrella tool with many sub-actions rather than a single verb+resource, so it is clear but intentionally broad.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives excellent usage guidance: 'use install only to make an MCP PERMANENT in the active toolkit', 'prefer invoke for a single/occasional use', and it explains when search/describe vs list_tools is appropriate. It also explicitly notes that writes require workspace owner/admin, which is actionable.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
report_bugAIdempotentInspect
Report a bug, missing feature, or send feedback. Include the conversation array with recent messages for reproduction.
| Name | Required | Description | Default |
|---|---|---|---|
| context | No | ||
| message | Yes | ||
| conversation | No | [] |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate readOnlyHint=false, destructiveHint=false, and idempotentHint=true, so the safety profile is partially covered. The description adds the useful detail that conversation messages should be included for reproduction, but it does not disclose side effects, submission outcomes, or any other behavioral consequences beyond that.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two short, front-loaded sentences. The first sentence states the overall purpose; the second provides one actionable detail. No words are wasted and every clause earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple three-parameter tool with no output schema, the description is mostly sufficient: it names the purpose and includes a critical parameter instruction. The only notable omission is why the optional context field exists and any response/return behavior, but that is less essential given the tool's low complexity.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description must compensate. It explicitly explains the conversation parameter's purpose for reproduction and the message parameter is implied by 'Report a bug, missing feature, or feedback.' However, the optional 'context' parameter is not given any semantic guidance, leaving a noticeable gap without the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('Report') and the resources/events ('bug, missing feature, or feedback'), which is specific and easily distinguishable from sibling tools like authenticate, marketplace, or show_version.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
It provides clear context for when to use the tool ('Report a bug, missing feature, or send feedback') and adds a practical usage instruction ('Include the conversation array with recent messages for reproduction'). It does not explicitly discuss exclusions or alternatives, but no sibling tool plausibly competes with this purpose.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
sefaz_ma_certidao_divida_ativa_consultarARead-onlyIdempotentInspect
SEFAZ MA: Certidão de Dívida Ativa, consulta em fonte oficial. Hospedado pela plataforma, sem credenciais da plataforma, pague por consulta com crédito pré-pago. Consulta informação de fontes e órgãos oficiais brasileiros (a mesma disponível ao cidadão), não é dado sigiloso. O cliente é o controlador dos dados e responde pela finalidade legítima (LGPD).
| Name | Required | Description | Default |
|---|---|---|---|
| ie | No | ||
| cpf | No | ||
| cnpj | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, idempotentHint, openWorldHint=false, and destructiveHint=false. The description adds valuable behavior beyond those: no platform credentials are required, queries consume prepaid credits, and the data is non-confidential public citizen-facing information. It also clarifies LGPD accountability, which is useful context beyond the annotation set.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is relatively concise and the core purpose is front-loaded. There is a little redundancy between 'fonte oficial' and 'fontes e órgãos oficiais brasileiros', and the LGPD clause adds length, but overall the content is dense and contained.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool has three undocumented parameters, no output schema, and no required-property constraints, so the description carries a heavy burden. It explains payment, publicity, and data-responsibility context, but it omits how to parameterize the query, what the returned certificate looks like, and what happens with invalid or missing identifiers.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema lists three string parameters (ie, cpf, cnpj) with no descriptions, and the description provides zero parameter-specific guidance. It does not state whether these identifiers are alternatives, combinations, or in what format they should be provided, so the agent is left guessing about the intended parameter usage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description opens with 'SEFAZ MA: Certidão de Dívida Ativa, consulta em fonte oficial', which clearly names the resource, the query action, and the official origin. It also adds that this is the same information available to citizens, differentiating it from privileged or internal access tools.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives useful usage context: the tool is hosted by the platform, requires no platform credentials, and is paid per query using prepaid credits. It does not explicitly state when not to use it or list alternatives, but the context is clear enough for an agent to determine when this paid official-source query applies.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
show_versionARead-onlyIdempotentInspect
Show the current MCP platform and adapter versions.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
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 safety is covered. The description adds that it shows both platform and adapter versions, which is useful behavioral context beyond just 'safe to call'.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
A single sentence that is direct and front-loaded. It contains zero fluff and completely conveys the tool's function with just 9 words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For such a simple tool with no parameters and no output schema, the description fully communicates what the tool does. There is no missing context; the scope is entirely captured by the description.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has zero parameters, so the schema covers all parameter semantics perfectly (100% coverage). Per the rubric, a zero-parameter tool receives a baseline of 4; no additional description is needed.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses the specific verb 'show' with a clear resource ('MCP platform and adapter versions'). It precisely identifies what information is returned and distinguishes itself from sibling tools like 'authenticate' or 'connect' which have entirely different purposes.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description makes it obvious when to use the tool (to check version info). No explicit alternatives or exclusions are given, but given the trivial nature of the tool, this is not a gap. It provides clear context without needing to state 'when not to use'.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
toolkit_infoARead-onlyIdempotentInspect
Returns the current toolkit state: installed MCPs, their connection status, the accounts connected to each one, and how many catalog tools each exposes.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate read-only, idempotent, and non-destructive. The description adds context about the specific data returned, which complements but does not contradict the annotations. It does not mention potential errors, but for a simple state query that is acceptable.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, concise sentence that directly states the tool's purpose and output content. There is no redundancy or unnecessary detail.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given there is no output schema, the description adequately explains the return value by enumerating the key components of the state. It covers the main aspects (installed MCPs, connection status, accounts, and catalog tool counts) without missing obvious elements for a state-inspection tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has no parameters, so schema coverage is 100%. The description does not need to explain parameters, and the absence of any parameter info is not a gap. The baseline for high coverage is 3, but the description adds no extra meaning for parameters since there are none, so a slightly above-baseline score is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool returns the current toolkit state, specifying exactly what is included (installed MCPs, connection status, accounts, and number of catalog tools). This is specific and distinguishes it from siblings like 'show_version' or 'authenticate'.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage for inspecting overall toolkit state, but does not explicitly mention when to use it over alternatives. However, given the read-only nature and the specific content, it is clear this is for state inspection and not for actions like authentication or connection.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
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-qualityCmaintenanceEnables querying official tax debt certificates (Certidão de Dívida Ativa) from SEFAZ DF (Federal District Revenue) via a read-only MCP tool. Supports use with any MCP client over HTTP, with prepaid credits.MIT
- Alicense-qualityCmaintenanceConsulta em fonte oficial a Certidão Negativa de Débitos da SEFAZ MA, com uma ferramenta somente leitura via MCP over HTTP.MIT
- Alicense-qualityCmaintenanceEnables consulting Brazilian federal tax debt certificates (CND) from the official PGFN source through a read-only MCP tool, with pay-per-use hosted access.MIT
- Alicense-qualityCmaintenanceEnables AI agents to consult SEFAZ DF official negative debt certificates (Certidão Negativa de Débitos) through a single read-only MCP tool, with prepaid usage and no platform credentials.MIT
Your Connectors
Sign in to create a connector for this server.