Prefeitura SP Mogi das Cruzes: Certidão Negativa de Débitos
Server Details
Prefeitura SP Mogi das Cruzes: Clearance Certificate (Debts), official-source lookup. Platform-hoste
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- mcp-dir/pref_sp_mogi_cruzes_cnd-mcp
- GitHub Stars
- 0
- Server Listing
- Prefeitura SP Mogi das Cruzes: 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 4.4/5 across 7 of 7 tools scored.
Most tools have clearly distinct purposes: authenticate for login, connect for status, marketplace for discovery, report_bug for feedback, show_version for version info, toolkit_info for state, and the specific certificate query tool. The only slight overlap is between connect and toolkit_info, both reporting connection status, but they differ in emphasis.
Naming is inconsistent: some are bare verbs (authenticate, connect), some are nouns (marketplace, toolkit_info), some are verb_noun (report_bug, show_version), and the domain tool is a long prefixed noun (pref_sp_mogi_cruzes_cnd_consultar). No clear pattern across the set.
With 7 tools, the count is within a reasonable range, but the server name suggests a narrow purpose (a single certificate query). Most tools are generic platform utilities, so the count feels slightly heavy for the apparent domain, yet still manageable.
The specific domain (consulting a negative debt certificate) is covered by one tool, which may be sufficient for a single lookup. The platform tools cover authentication, connection, and marketplace needs, but there is no obvious missing operation for the certificate workflow. Minor gap: no history or batch query capability.
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 indicate readOnlyHint:false, idempotentHint:true, destructiveHint:false, but the description adds essential behavioral context: it clarifies that the tool is non-destructive and idempotent (can be called multiple times to get the link), and that it does not mutate state permanently unless a token is pasted, which is a session-only side effect. It also explains the permanent vs. session distinction, which the annotations do not capture.
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 compact for the complexity it covers, with a clear flow: it starts with the target audience, then the recommended permanent method, then the session-only fallback. Each sentence serves a purpose, and it is front-loaded with the primary action, making it easy for an agent to parse quickly.
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 one optional parameter, no output schema, and the annotations are sparse, the description is remarkably complete. It covers the two invocation modes, the authentication flow, and the configuration alternative. This is more than sufficient for an agent to correctly select and invoke the tool without additional context.
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 only one optional 'token' parameter with 0% description coverage, so the description must carry the full burden. It explains that token is a JWT string the user pastes from the browser, and that omitting it triggers a link generation. This adds semantic meaning beyond the mere property name, fully compensating for the schema's lack of description.
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's purpose as the authentication entry point for IDE agents, spelling out the verb 'log in' and the resource 'access token'. It distinguishes itself from siblings like 'connect' by explicitly targeting IDE agents and describing the login flow, which is unique among the sibling list.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides explicit when-to-use and how-to-use guidance: it explains the recommended permanent configuration via a header, versus the session-only paste flow. It also instructs the agent on when to call with no args (to get the link) versus with a token, which is critical for correct invocation.
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?
Beyond the readOnlyHint and idempotentHint annotations, the description discloses the exact conditional behavior: successful connection returns authenticated:true and empty pending[], while missing credentials produce connect_url and per-install URLs. This adds meaningful behavioral context without contradicting 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 three sentences, front-loaded with the core purpose, and each sentence adds concrete detail about conditional outcomes. There is no redundancy or filler.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple, zero-parameter, read-only status tool with no output schema, the description sufficiently explains return values in both relevant scenarios. Annotations cover safety and idempotency, and the description completes the behavioral picture.
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 and the schema coverage is 100%, so there is no parameter information needed. The description focuses on outputs, which is appropriate for a zero-parameter tool.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool returns connection status and URLs, with specific conditional outcomes ('authenticated:true and empty pending[]' vs 'connect_url'). This distinguishes it from sibling tools like authenticate, which implies initiating a connection rather than reporting status.
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 to check whether all providers are connected and to retrieve connection URLs when credentials are missing. It does not explicitly name alternatives or state when not to use it, but the context is clear enough for a zero-parameter status tool.
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 sparse annotations, the description reveals critical behaviors: invoke runs tools without installing or bloating the toolkit, auth failures return a connect link, empty wallets return a checkout link, writes require workspace owner/admin, and the prompt library share links work without login. This is rich and non-contradictory with 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 dense but front-loaded with the core purpose and workflow. Every sentence contributes useful information, though the single-paragraph structure makes the many actions and sub-features harder to scan than a bulleted breakdown would be.
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 14 actions, 23 parameters, and no output schema, the description is impressively complete on core workflows, auth, billing, and the prompt library. However, the 'resume' action is never mentioned, and several parameter-specific behaviors such as immediate and tier_slug remain unaddressed.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
With 23 parameters and 0% schema description coverage, the description must carry the parameter meaning burden. It explains the role of action, tool_id, and prompt-related parameters at a high level, but leaves many other parameters (limit, query, message, immediate, tier_slug, cancel_reason, report_context, request_details, prompt_targets, etc.) unexplained.
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 runtime, with a concrete workflow: search to discover, describe to inspect, invoke to run. It explicitly distinguishes this hub-style tool from siblings by covering catalog lookup, execution, billing, and prompt-library actions in one place.
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 guidance: prefer invoke for one-off use, use install only to make an MCP permanent, use list_tools for what is callable now, and use request_mcp when nothing fits. It also outlines the search→describe→invoke flow and explains when connect/checkout links will appear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
pref_sp_mogi_cruzes_cnd_consultarARead-onlyIdempotentInspect
Prefeitura SP Mogi das Cruzes: 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 |
|---|---|---|---|
| ccm | 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=true, destructiveHint=false, idempotentHint=true. The description adds valuable context beyond annotations: payment via prepaid credit, no platform credentials, LGPD data controller responsibility, and clarification that data is not confidential. This enriches behavioral understanding without 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?
The description is compact—three sentences that front-load the core purpose and then add essential operational details. It avoids redundancy and stays focused, though it could be slightly more structured by separating legal info.
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 no output schema and three optional parameters, the description omits return format or content details and provides no parameter guidance. It covers payment, credentials, and legal aspects, but misses operational specifics needed for a complete usage understanding.
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%, and the description does not mention any of the three parameters (ccm, cpf, cnpj) or explain their formats, usage, or selection criteria. Since coverage is low, the description must compensate but fails to provide any guidance on 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 specifies the action (consulta) and resource (Certidão Negativa de Débitos) for a specific municipality (Mogi das Cruzes). It distinguishes from unrelated siblings by naming the official source and domain, making the tool's purpose unambiguous.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides concrete usage conditions: no platform credentials required, requires prepaid credit for payment, and states the tool accesses official Brazilian sources available to citizens. While it doesn't explicitly compare to alternatives, siblings are unrelated, so this context is sufficient for when to use it.
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 idempotentHint=true and destructiveHint=false. The description adds context that conversation data should be included for reproduction, implying that the report will be used for debugging. It does not elaborate on side effects like data transmission or whether a confirmation/ticket is returned, but the annotation coverage lowers the burden. It does not contradict 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 entire description is two sentences. It opens with the primary purpose and follows with a specific usage requirement. No filler or redundant details; every word contributes.
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 is relatively simple with three parameters and no output schema. The description covers the main scenario (reporting an issue), identifies the required message field, and provides guidance on the conversation field. It doesn't mention return values or confirmations, but that's not critical for a bug-report tool. Annotations add safety context, making it reasonably 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?
The schema has 0% description coverage, so the description must compensate. It explicitly instructs to include the 'conversation' parameter with recent messages, giving it purpose. The 'message' parameter is implicitly described as the text of the bug/feedback. 'context' is not explained, but its name and default suggest it's optional contextual data. Overall, partial compensation for a low-coverage 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 specifies the tool's function with a clear verb ('Report') and resource ('a bug, missing feature, or send feedback'). It distinguishes this tool from siblings like authenticate or show_version, none of which handle bug reporting. It also hints at the required parameter (message) as the content of the report.
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 identifies when to use the tool: when there's a bug, missing feature, or feedback to submit. It does not explicitly mention alternatives or exclusions, but the sibling tools are unrelated, so the context is sufficient. However, it lacks explicit guidance on when not to use it, such as for general queries or non-technical issues.
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 description aligns with the annotations (read-only, idempotent, non-destructive) by using 'Show', which implies no side effects. It adds context by specifying what is shown (platform and adapter versions), beyond what annotations provide, though it does not mention any additional behavioral details like network calls or caching.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, clear sentence with no unnecessary words. It is well-structured and directly conveys the tool's function.
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 (no parameters, read-only operation, no output schema), the description fully covers what the tool does. There is no need for further elaboration on return values or side effects.
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% and the baseline score applies. The description does not need to explain parameter semantics, and it provides no additional parameter-related information.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action (Show) and the resource (MCP platform and adapter versions), making the tool's purpose unambiguous. It is easily distinguished from sibling tools like authenticate, connect, or report_bug, which serve different functions.
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 state when to use this tool versus alternatives, but the purpose is simple enough that an agent would infer usage when version information is needed. No explicit conditions or exclusions are provided, so guidance is implied rather than stated.
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. The description adds valuable detail about exactly what state is returned (installed MCPs, statuses, accounts, catalog tool counts). This goes beyond the annotations without contradicting them, although it doesn't mention rate limits or side effects (not needed for a read-only tool).
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, well-structured sentence that front-loads the verb 'Returns' and then lists the key components of the state. Every element adds value and there is no fluff.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a zero-parameter read-only status tool, the description fully covers what the agent needs to know: what the tool does and what information it provides. It's complete for its purpose and leaves no obvious gaps for the expected use case.
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 zero parameters and 100% schema coverage (trivially), the description doesn't need to explain any parameters. The baseline for 0 parameters is 4, and the description provides no param-specific info, which 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 action ('Returns the current toolkit state') and the specific resource (installed MCPs, connection status, connected accounts, catalog tool counts). This distinguishes it from sibling tools like 'connect' or 'authenticate', which are action-oriented, while this is a read-only status/inspection tool.
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 it's for retrieving state and not for taking actions, giving clear context for when to use it. It doesn't explicitly name alternatives, but for a simple status tool, that's not necessary. No exclusions are stated, but the purpose is self-evident.
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 gradedqualityCmaintenanceConsulta de dados oficiais da Prefeitura SP Mogi das Cruzes (CPOM) em fonte oficial, com ferramenta de leitura para agentes de IA via HTTP.MIT
- AlicenseNot gradedqualityCmaintenanceMCP server for consulting official municipal tax debt certificates (Certidão Negativa de Débitos Mobiliários) from Prefeitura de Guarulhos, SP, Brazil, via a hosted read-only API with prepaid credits.MIT
- AlicenseNot gradedqualityCmaintenanceProvides read-only access to query negative debt certificates (Certidão Negativa de Débitos) from the Municipality of Guarulhos (São Paulo, Brazil) via a hosted MCP server with prepaid credits.MIT
- AlicenseNot gradedqualityCmaintenanceMCP server for querying the Certificate of Non-Registration from Osasco City Hall (SP, Brazil). It provides a single read-only tool to consult this certificate via official sources, hosted with pay-per-use credits.MIT
Your Connectors
Sign in to create a connector for this server.