Prefeitura RS Montenegro: Certidão Negativa de Débitos
Server Details
Prefeitura RS Montenegro: Clearance Certificate (Debts), official-source lookup. Platform-hosted, pa
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- mcp-dir/pref_rs_montenegro_cnd-mcp
- GitHub Stars
- 0
- Server Listing
- Prefeitura RS Montenegro: Certidão Negativa de Débitos MCP
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.
There is significant overlap in connection/state tools: 'connect' returns connection status and URLs, 'toolkit_info' returns connection status and accounts, and 'authenticate' handles the credential side. Meanwhile, 'marketplace' is a massive catch-all that subsumes search, install, invoke, billing, and prompt-library duties, making its boundary with 'report_bug' and even 'toolkit_info' blurry. The single domain-specific Portuguese tool feels bolted onto an unrelated generic platform suite.
The names mix several conventions: bare verbs (authenticate, connect), snake_case verb_noun (report_bug, show_version), bare nouns (marketplace, toolkit_info), and a full Portuguese descriptive name (pref_rs_montenegro_cnd_consultar). The verb tense and style are inconsistent — there is no predictable pattern an agent could rely on to guess the next tool name.
At 7 tools the raw count sits comfortably in the ideal 3-15 range. However, the scope is muddled — 6 tools serve the generic mcp.ai platform while only 1 serves the stated 'Prefeitura RS Montenegro' purpose, so the count that should be dedicated to the domain is effectively 1. The number is fine, but the allocation reflects an identity crisis.
For the server's stated purpose (Certidão Negativa de Débitos consultation), there is only a single query tool with no supporting operations: no certificate validation, no history, no rate/status check, not even a simple 'consulta' variant. The remaining tools form a generic platform layer (auth, marketplace, debug, version) that does not serve the domain. If the marketplace is the real product, then the single prefeitura tool is the out-of-place one; either way the surface is incomplete for the stated domain.
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 goes beyond the annotations by stating that a no-argument call returns a link, that passing a token creates a session-only login, and that permanent access is better handled through a configured Authorization header. This is valuable context; only the detailed return shape after the session call is not described, but annotations already cover idempotency and non-destructiveness.
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 but stays focused; every sentence contributes either usage context or invocation instructions. It is not as terse as possible, but the extra guidance about permanent versus session-only login is valuable enough to justify the length.
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 simple parameter shape and absent output schema, the description covers the main expected usage modes and what the no-argument call returns. The only minor gap is not stating the exact response payload or success/failure behavior when passing a token, but this remains usable for practical agent invocation.
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 token parameter has zero schema description coverage, so the tool description must compensate. It does so reasonably by explaining that the token is a JWT, should be pasted from the browser, and is used for session-only login. It also clarifies that the parameter is optional since calling with no arguments gets the link.
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 authentication mechanism for the MCP server, specifying an actionable workflow: log in, obtain a token, and either configure it permanently or pass it for a session. It distinguishes itself from siblings by focusing specifically on authentication and login, not general connection or metadata operations.
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 explicitly explains when to use the tool: with no arguments to get a login link, and with a token for session-only login. It also directly contrasts this with the recommended permanent setup via server config, giving the agent a clear decision path between two authentication modes.
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 indicate readOnly, idempotent, non-destructive. The description adds conditional return behavior: when all providers connected returns authenticated:true and empty pending[], when credentials missing returns connect_url and per-install URLs. This goes beyond annotations by describing response conditionsais. No contradiction.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences, front-loaded, no fluff. Describes purpose and conditional behavior efficiently.
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 status tool with no parameters and no output schema, the description covers the two main cases (all connected vs credentials missing) and provides enough context. Could be slightly clearer about the exact meaning of pending[] or URLs, but it's adequate.
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?
No parameters exist, so baseline is 4. Description doesn't need to explain parameters; it's about the return behavior.
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: 'Returns connection status and URLs.' It specifies the exact resource (connection status) and the output (URLs). It distinguishes itself from sibling tools like 'authenticate' by focusing on status rather than performing authentication, making it a distinct read-only check.
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 determine if credentials are missing. It gives conditional behavior (when all providers connected vs when credentials missing) but doesn't explicitly name alternatives or say 'use when...'. The mention of 'connect_url' for missing credentials implies it might be a precursor to authentication, but it doesn't explicitly say 'use to check if you need to authenticate' or name an alternative tool. So it's clear context but lacks explicit exclusion 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?
Goes well beyond annotations by disclosing that invoke works even when the MCP is not installed, returns connect or checkout links when credentials/funds are missing, requires workspace owner/admin for writes, and distinguishes one-off from permanent installs. This is rich behavioral context not available from structured fields.
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 densely informative and front-loaded with the core flow. Each section adds value, though the paragraph style and examples make it heavier than necessary; a bulleted structure could improve scannability.
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 23-parameter, multi-action router with no output schema, the description is unusually complete: it covers discovery, profiling, invocation, installation semantics, auth/billing behavior, permissions, prompt-library operations, and fallback request_mcp. It explains return links for key flows, which compensates for the missing output schema.
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 carries the burden for parameter meaning. It explains the action enum values and high-level flows (search, describe, invoke, prompt actions), but does not clarify many individual parameters such as limit, query, immediate, arguments format, tier_slug, or prompt_* fields beyond their obvious names.
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 catalog and execution layer, with a specific core flow (search → describe → invoke). It distinguishes from siblings by focusing on discovery, profiling, and one-off execution, though it is broad because it also covers installs, billing, and prompt-library actions.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Provides explicit when-to-use guidance: prefer invoke for single/occasional use, use install only to make an MCP permanent, and search/describe for discovery. It also gives alternatives within the tool (subscribe/cancel, report_bug, request_mcp) and describes the core decision path from capability request to execution.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
pref_rs_montenegro_cnd_consultarARead-onlyIdempotentInspect
Prefeitura RS Montenegro: Certidão Negativa de Débitos, consulta em fonte oficial. Hospedado pela plataforma, sem credenciais da plataforma, pague por consulta com crédito pré-pago. Consulta informação de fontes e órgãos oficiais brasileiros (a mesma disponível ao cidadão), não é dado sigiloso. O cliente é o controlador dos dados e responde pela finalidade legítima (LGPD).
| Name | Required | Description | Default |
|---|---|---|---|
| cpf | No | ||
| cnpj | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is clear. The description adds valuable context: it is hosted by the platform, requires prepaid credits, and clarifies that the data is not confidential and is the same available to citizens. It also addresses LGPD compliance, which is important for data privacy. This goes beyond the annotations and provides useful behavioral context.
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 with three sentences, each providing distinct information: what it does, how it is hosted and paid, and data privacy context. It is concise and front-loaded with the core purpose. It could be slightly more structured, but it is efficient and not verbose.
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 (2 parameters, no output schema, no nested objects), the description covers the essential aspects: purpose, source, payment model, and legal context. It does not explain the return format, but since there is no output schema, that is a minor gap. The description is complete enough for an agent to understand what the tool does and the key operational details (prepaid credits, LGPD).
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 2 parameters (cpf and cnpj) with 0% description coverage, so the description must compensate. The description does not explain the parameters at all, but the parameter names are self-explanatory (CPF and CNPJ are common Brazilian identifiers). The description mentions 'consulta' and the context of CND, which implies that either CPF or CNPJ is needed, but it does not specify that they are alternatives or that at least one is required. Given the low schema coverage, the description should have provided more detail, but the names are clear enough for a baseline.
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: it queries an official source for a Certidão Negativa de Débitos (negative debt certificate) from the Montenegro city government. It specifies the resource (Prefeitura RS Montenegro) and the action (consultar), which distinguishes it from the sibling tools that are general platform utilities (authenticate, connect, etc.). However, it could be more explicit that it returns the certificate status or data.
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: it is for querying official Brazilian sources, and it mentions payment via prepaid credits, which suggests when to use it (when a user needs a CND for Montenegro). It does not explicitly state when not to use it or mention alternatives, but the sibling tools are unrelated, so the context is clear enough. It lacks explicit guidance on prerequisites like having credits or the need for CPF/CNPJ.
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 convey read-only, destructive-Hint, and idempotence. The description adds one behavioral detail: the conversation data is needed for reproduction. It does not disclose what happens after submitting, such as whether a ticket is created or if data is sent externally, leaving some side-effect details unexplored.
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 exactly two sentences: the first states the purpose, the second gives necessary reproduction guidance. Every sentence contributes value, and the most important information is front-loaded.
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 three parameters and no output schema, the description is thin. It does not explain what the agent or user will receive after a successful report, how to structure the optional `context` parameter, or how the conversation should be serialized. The purpose is clear, but the full operational picture is incomplete.
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 0% schema coverage, the description must carry parameter meaning. However, it refers to a 'conversation array' while the schema types conversation as a string (defaulting to '[]'), which is misleading for an agent. The `message` and `context` parameters are not clarified beyond the tool's broad purpose.
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 a clear verb-resource pairing: 'Report a bug, missing feature, or send feedback.' This captures the purpose explicitly and distinguishes the tool from all six siblings, none of which relate to bug reporting or feedback.
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 first sentence directly states when to use the tool (for bugs, missing features, or general feedback), and the second sentence provides actionable guidance about including the conversation for reproduction. It lacks explicit exclusions or alternatives, but the unrelated sibling set makes those less necessary.
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?
The annotations already indicate read-only, idempotent, and non-destructive behavior. The description is consistent with these traits and does not contradict them, but it adds little beyond what annotations provide. Given the annotations, the bar is lower, and the description suffices.
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 conveys all necessary information. It is appropriately sized for the tool's simplicity.
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 minimal complexity (no parameters, no output schema), the description is complete. It clearly states what the tool does without needing additional context or return value explanations.
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, so the description has nothing to explain beyond the schema. The schema coverage is 100% (no parameters), meeting the baseline. The description does not need to add parameter 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's function: showing the current MCP platform and adapter versions. It is specific and unambiguous, leaving no doubt about what the tool does.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description does not explicitly mention when to use this tool versus alternatives, but given its simple nature as a version checker, such guidance may be unnecessary. It is adequate but not explicit about 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, idempotentHint=true, and destructiveHint=false, so the description adds value by detailing the specific content returned (installed MCPs, connection status, accounts, catalog tool counts). It does not contradict the annotations and provides useful context beyond the safety hints.
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, front-loaded sentence that begins with the action and resource, then lists the key outputs. It is concise, with no wasted words, and clearly structures the information.
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, parameterless read-only state inspection tool with no output schema, the description is complete. It enumerates exactly what will be returned and is sufficient for an agent to understand the tool's function and expected output.
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 description correctly omits parameter explanations. Baseline for 0 params is 4, and the description does not need to add parameter semantics beyond what is already evident.
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 with a specific verb 'Returns' and a precise resource 'toolkit state', enumerating the exact details returned (installed MCPs, connection status, accounts, catalog tool counts). It distinguishes itself from sibling tools like show_version (which likely shows version info) and connect/authenticate (which are actions).
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 the toolkit's overall state, but does not explicitly mention when to use this tool versus alternatives like show_version or connect. There is no stated when-not-to-use or alternative recommendation, so it relies on inference.
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 negative debt certificates from the Prefeitura de Três Coroas (RS, Brazil) through a read-only MCP tool.MIT
- AlicenseNot gradedqualityCmaintenanceEnables consulting the Negative Debt Certificate (Certidão Negativa de Débitos) from the city of Caxias do Sul, RS, Brazil, using official sources. Offers a single read-only tool for checking debt status.MIT
- AlicenseNot gradedqualityCmaintenanceEnables MCP clients to query the official tax clearance certificate (Certidão Negativa de Débitos) from the Florianópolis city government. It is a read-only tool that facilitates verification of a taxpayer's debt status through natural language.MIT
- AlicenseNot gradedqualityCmaintenanceEnables querying negative debt certificates (Certidão Negativa de Débitos) from the Naviraí city government (Prefeitura MS Naviraí) through an official source, providing read-only consultation via natural language.MIT
Your Connectors
Sign in to create a connector for this server.