Prefeitura SP São Bernardo do Campo: Certidão Negativa de Débitos
Server Details
Prefeitura SP São Bernardo do Campo: Clearance Certificate (Debts), official-source lookup. Platform
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- mcp-dir/pref_sp_sao_bernardo_cnd-mcp
- GitHub Stars
- 0
- Server Listing
- Prefeitura SP São Bernardo do Campo: Certidão Negativa de Débitos
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
Full call logging
Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.
Tool access control
Enable or disable individual tools per connector, so you decide what your agents can and cannot do.
Managed credentials
Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.
Usage analytics
See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.
Tool Definition Quality
Average 3.9/5 across 7 of 7 tools scored. Lowest: 3.1/5.
Each tool has a clearly distinct purpose: authentication, connection status, marketplace search/invoke, domain-specific consultation, bug reporting, version info, and toolkit state. No two tools overlap in function, so an agent can reliably select the correct one.
Naming conventions are mixed: single verbs (authenticate, connect), nouns (marketplace), verb_noun compounds (report_bug, show_version), and a long prefixed domain tool (pref_sp_sao_bernardo_cnd_consultar). No consistent pattern exists across the set.
Seven tools is a moderate number, but the server bundles six generic platform utilities with one domain-specific tool. This feels bloated for a 'Certidão Negativa' server, and the mixed scope makes the count less appropriate for its apparent purpose.
For the nominal domain, only a single query tool is provided, which may be sufficient for a simple lookup. However, the platform-related tools are complete for their own purposes, leaving an oddly balanced surface that lacks any additional domain operations like history or validation.
Available Tools
7 toolsauthenticateAIdempotentInspect
MCP.AI for IDE agents (Cursor, etc.): log in in the browser, copy the access token. Best: add it to this server's config as a header Authorization: Bearer <token> for a permanent, non-expiring connection. Or paste it here for a session-only login: call with { token: "" } after the user pastes, or with no args to get the link.
| Name | Required | Description | Default |
|---|---|---|---|
| token | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations show idempotentHint=true and destructiveHint=false, and description aligns: it mentions non-expiring connection, session-only login, and that calling with no args gives link. It doesn't contradict annotations, but adds minimal behavioral detail beyond what annotations already provide (e.g., no mention of side effects like browser redirects or timeout behaviors).
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 main purpose and quickly explains usage options. It includes necessary details about token and link, but could be more concise by separating sentences; still, it earns its 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 tool's simplicity (one optional param, no output schema), the description covers the essential context: how to authenticate, two methods, and the recommendation for persistent vs session. It is complete enough for an IDE agent to decide and invoke, though it could mention potential errors or prerequisite (browser login step is implied).
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 has only one optional 'token' parameter with no description coverage (0%). The description explains the token's usage ('paste it here' or 'with no args'), which adds meaning beyond the schema's bare string type. However, it doesn't explain the token format (JWT mentioned in one phrase) or other potential parameters, so it partially compensates but not fully.
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 purpose: authenticating via login in browser and copying an access token. It specifies the tool accepts a token or returns a link, distinguishing it from sibling tools like 'connect' and 'show_version' which likely have different purposes.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Provides explicit usage instructions: recommends adding token to config for permanent connection, or pasting token for session-only login. It explains when to use this tool (first-time auth) vs alternatives implicitly, but lacks explicit exclusions or 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.
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 clear. The description adds behavioral context about the two possible states (all connected vs. missing credentials) and what URLs are returned, which is useful but does not go beyond what annotations already cover in terms of side effects.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences, front-loaded with the primary purpose, and every sentence adds value. It efficiently covers the main output and the edge case of missing credentials without 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?
Given the tool has no parameters, no output schema, and simple annotations, the description is fairly complete. It explains the two states and the URLs returned, which is sufficient for an agent to understand the tool's behavior. However, it could mention whether the tool requires prior authentication or if it triggers any side effects, but annotations already cover safety.
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 provides no parameter semantics. The description compensates by explaining the output behavior in different states, which is the only relevant semantic information. With 0 params, baseline is 4, and the description meets that by clarifying the return values.
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, and distinguishes between all-connected and missing-credentials states. It is specific about the resource (connection status) and the output (authenticated flag, pending array, connect URLs), which differentiates it from siblings like authenticate and toolkit_info.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage for checking connection status, but does not explicitly state when to use this tool versus alternatives like authenticate or toolkit_info. It provides context on what the tool returns in different states, 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?
Beyond the annotations, the description discloses permission requirements ('Writes ... require workspace owner/admin'), the one-off execution behavior of invoke, the fact that invoke works even when the MCP is not installed, and the credential/payment link flows. No contradiction with annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is long but densely informative; every sentence adds meaningful guidance. It uses labels like 'KEY', 'Core flow', and 'Use install only' to create structure, though it could benefit from bullet points or short paragraphs for easier scanning.
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 complexity, 23 parameters, and no output schema, the description is remarkably complete: it covers the core workflow, installation vs one-off invocation, auth and payment edge cases, permissions, billing actions, and the separate prompt library subsystem. It explains expected return artifacts for describe, invoke, get_prompt, and publish_prompt.
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 description coverage, the description compensates well by explaining the meaning of the action enum, tool_id selection via describe, and prompt_slug/publish_prompt flow. However, several parameters like limit, immediate, tier_slug, conversation, prompt_targets, request_details, and cancel_reason receive no explanation, so it is not fully sufficient.
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 covering both discovery and execution of MCPs/tools. It goes beyond a vague verb by explaining the core flow (search → describe → invoke) and distinguishes this router-style tool from its siblings by enumerating its many capabilities.
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 each action: 'prefer invoke for a single/occasional use', 'Use install only to make an MCP PERMANENT', and describes the retry flow for connect/checkout links. It also explains when subscribe/cancel, request_mcp, and prompt-library actions are appropriate.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
pref_sp_sao_bernardo_cnd_consultarBRead-onlyIdempotentInspect
Prefeitura SP São Bernardo do Campo: 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 | ||
| inscricao | Yes | ||
| requerente_cpf | Yes | ||
| requerente_nome | Yes | ||
| requerente_email | Yes | ||
| requerente_telefone | Yes |
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 context about payment (prepaid credits), data source (official), and LGPD compliance, which is useful. However, it doesn't disclose what happens on failed queries, rate limits, or whether results are cached. The description doesn't contradict 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 a single paragraph, reasonably concise, and front-loaded with the core purpose. It includes necessary legal and payment context without excessive verbosity. However, it could be better structured with bullet points or clearer separation of purpose, usage, and compliance.
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 has 7 parameters, 5 required, no output schema, and no parameter descriptions, the description is insufficient. It doesn't explain the difference between 'cpf' and 'requerente_cpf', nor the 'inscricao' field. It also doesn't describe the return format or what a successful consultation looks like. The legal and payment context is helpful but doesn't compensate for the lack of operational detail.
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 mentions 'requerente' fields (CPF, nome, email, telefone) and 'inscricao' but doesn't explain their meaning or format. The schema has 7 parameters with no descriptions, and the tool description only vaguely references 'consulta' without detailing which parameters are needed for what. This is a significant gap for a tool with 5 required 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 the tool's purpose: consulting Certidão Negativa de Débitos (negative debt certificate) from São Bernardo do Campo's official source. It specifies the resource (CND) and the action (consultar), and distinguishes it from generic tools by naming the specific municipality and certificate type. However, it doesn't explicitly differentiate from sibling tools, though siblings are unrelated (auth, marketplace, etc.).
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's for consulting official Brazilian sources, requires prepaid credits, and is hosted by the platform. It mentions the client is the data controller under LGPD, which hints at compliance requirements. However, it doesn't explicitly state when to use this tool vs alternatives, nor does it mention any exclusions or prerequisites beyond payment.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
report_bugBIdempotentInspect
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?
The description implies a write operation ('Report') with no annotation contradiction; annotations show readOnlyHint=false and destructiveHint=false. However, it does not state what happens after submission (acknowledgment, response format, rejection cases) or whether the report is reversible, which matters for a tool with no output schema.
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 with the primary purpose front-loaded. The second sentence provides actionable guidance (include conversation array). No filler words, but it could be merged into one sentence without loss. Still appropriately compact.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With 3 parameters at 0% schema coverage and no output schema, the description partially compensates by naming 'conversation array' and 'reproduction.' However, it doesn't explain the 'context' parameter, what happens after reporting (response/confirmation), or whether this is a fire-and-forget call. For a reporting tool with no annotations covering mutation behavior, more context would be helpful.
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 partially does: it explains the 'conversation' parameter should contain recent messages for reproduction bugs Dev. However, it does not explain the 'context' parameter at all, and it doesn't clarify that 'conversation' is a JSON array string (though it implies it). The description adds some value beyond the schema but leaves context undocumented.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's function: 'Report a bug, missing feature, or send feedback.' It uses a specific verb ('report') and enumerates the scope of acceptable messages (bug, missing feature, feedback), which distinguishes it from the sibling tools (authenticate, toolkit_info, etc.).
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 the 'how' (include conversation array) but no 'when to use' guidance relative to sibling tools. It doesn't state prerequisites, conditions triggering its use, or what distinguishes it from similar reporting paths (e.g., feedback via marketplace). The actionable instruction is limited to including the conversation for reproduction.
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 indicate read-only, idempotent, non-destructive, and openWorldHint false. The description adds that it shows both platform and adapter versions, which is useful. There is no contradiction. Since the tool is simple and side-effect free, the description covers the key behavior adequately.
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 is front-loaded with the verb 'Show' and the resource. It is immediately clear and contains no fluff. It 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 tool with zero parameters concerns and strong annotations (read-only, idempotent), the description is complete enough. It does not explain return format, but with no output schema and a simple version query, that is acceptable. It could be slightly improved by indicating what 'versions' includes (e.g., exact numbers), but the current level is 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?
The schema has zero parameters)Skip; the description correctly mentions no parameters. With no parameters, the baseline is 4 because there is nothing to explain. The description does not add anything about parameters, but that 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's purpose: showing the current MCP platform and adapter versions. It uses a specific verb and resource, and is unambiguous. It is distinct from siblings that handle authentication, connection, marketplace, etc.
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 clearly implies a usage context: when you need to check the versions of the platform and adapter. There are no explicit when-not-to-use or alternative tool mentions, but the tool is simple enough that guidance is minimal. However, it lacks explicit context on when to use this versus toolkit_info, which may also provide version info.
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, and the description does not contradict them. The description adds value beyond annotations by specifying what state is returned (installed MCPs, connection status, accounts, catalog counts), which gives the agent a concrete picture of the response.
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, well-structured sentence with a front-loaded main clause and a colon-separated list of the exact data categories returned. Every word adds information, and there is no fluff 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 zero-parameter read-only state inspection tool, the description is complete: it names the resource and the four specific categories of information returned. It does not need to explain return values in more detail because the described content is the return value, and there are no input parameters or complex side effects to cover.
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% (empty object), so there are no parameter semantics to explain. The baseline of 4 applies because the description correctly does not invent parameter information and the schema/empty parameter set fully covers this dimension.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb ('Returns') with a clear resource ('current toolkit state') and itemizes exactly what that includes: installed MCPs, connection status, connected accounts, and catalog tool counts. This clearly distinguishes it from siblings like 'show_version' or 'authenticate', which are about different concerns.
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 use when an agent needs an overview of the toolkit's installed integrations and their health, but it does not explicitly say when to prefer this over alternatives or when not to use it. The context is clear enough to infer intended usage, but explicit guidance is missing.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Servers
- AlicenseNot gradedqualityCmaintenanceEnables users to consult tax clearance certificates (Certidão Negativa de Débitos) from the Sorocaba city government through an official source, with a read-only tool for natural language queries.MIT
- AlicenseNot gradedqualityCmaintenanceEnables querying negative debt certificates from São Carlos city hall through an official source, with a single read-only tool and pay-per-use pricing.MIT
- AlicenseNot gradedqualityCmaintenanceConsulta a fonte oficial da Prefeitura de São Paulo para emitir Certidões Tributárias Mobiliárias, via ferramenta somente leitura.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
Your Connectors
Sign in to create a connector for this server.