SEFAZ RJ: Certidão Negativa de Débitos (Certificado Digital)
Server Details
SEFAZ RJ: Clearance Certificate (Debts) (Certificado Digital), official-source lookup. Platform-host
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- mcp-dir/sefaz_rj_certidao_debitos_cert-mcp
- GitHub Stars
- 0
- Server Listing
- SEFAZ RJ Certidão Negativa de Débitos (Certificado Digital)
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. Lowest: 3.2/5.
Most tools have clearly distinct purposes: authentication, connection status, marketplace search/run, bug reporting, version info, and toolkit state. The sefaz tool is the only domain-specific oneholed, and while the marketplace can also run it, there is no direct overlap in names/roles. Minor ambiguity could arise between 'connect' and 'toolkit_info' regarding connection status, but descriptions disambiguate.
Names are mostly lowercase snake_case or single words, but there is a mix: 'authenticate', 'connect', 'marketplace' are single-word nouns/verbs, while 'report_bug', 'show_version', 'toolkit_info' follow a verb_noun pattern, and 'sefaz_rj_certidao_debitos_cert_consultar' is a long domain-specific name that breaks the pattern. Not chaotic, but not uniform.
7 tools is within a reasonable range, but the server appears to be a general-purpose platform toolkit rather than focused on SEFAZ RJ. The single domain tool feels like a plugin, and several tools (authenticate, connect, marketplace, report_bug, show_version, toolkit_info) are generic platform utilities. This suggests the server is not well-scoped for its name.
The server's stated purpose is SEFAZ RJ Certidão Negativa de Débitos, but it only exposes a single consult tool. There is no tool for listing certificates, handling multiple queries, or explaining the certificate details. The rest of the tools are general platform management that don't contribute to the domain, leaving many potential domain workflows uncovered.
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 already declare idempotentHint=true and destructiveHint=false, and the description adds behavioral context beyond that: it explains the non-expiring nature of config-based tokens versus session-only tokens, and that calling with no args returns a link. No contradictions 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 moderately sized but well-structured with two clear usage paths. Some initial phrasing like 'MCP.AI for IDE agents (Cursor, etc.)' adds context, but could be slightly more streamlined. Each sentence contributes to explaining the authentication flow.
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 tool with one optional parameter and no output schema, the description covers the full user flow: browser login, token acquisition, permanent vs session-only options, and how to invoke the tool. It lacks explicit error scenarios, but is otherwise complete for the tool's scope.
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 only shows an optional 'token' string with no description, and coverage is 0%. The description compensates thoroughly by explaining the token is a JWT, how to use it with { token: "<jwt>" }, and that omitting it retrieves the login link. This fully clarifies parameter meaning.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: authenticating to MCP.AI for IDE agents by logging in via browser and copying an access token. It distinguishes itself from sibling tools like 'connect' by focusing specifically on authentication flow and token handling.
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 guidance on when to use different approaches: adding the token to the server config for a permanent connection, or pasting it for a session-only login. It also explains when to call with no arguments to get the login link, covering all usage scenarios.
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, idempotentHint, and destructiveHint=false, so the safety profile is covered. The description adds value by explaining the return behavior in different scenarios (all providers connected vs. missing credentials), including the structure of the response (authenticated, pending, connect_url). This goes beyond what annotations provide and gives actionable insight into expected outputs.
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 exceptionally concise, consisting of two sentences. It front-loads the primary purpose in the first sentence and provides the key behavioral variations in the second. Every word adds value, with no fluff or repetition. This is a model of efficient communication.
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, no output schema) and the robust annotations, the description is largely complete. It covers the two main response states, but it does not address partial connectivity scenarios (e.g., some providers connected, others not). However, such details are likely inferred from the 'all providers' phrasing. The description sufficiently equips the agent to understand the tool's output for typical use cases.
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 baseline for this dimension is 4 per the rubric. The description does not need to explain parameter semantics since there are none. The complete schema coverage of 100% is trivial because the schema is empty, and the description appropriately focuses on the response 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 resource (connection status) and the action (returns). It distinguishes from siblings like authenticate (which presumably performs authentication) and show_version (which reports version). The two response states are explicitly described, leaving no ambiguity about the tool's function.
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 implicitly indicates this is a read-only status check, which naturally suggests it is for verifying connectivity before other operations. However, it does not explicitly state when to use it versus alternatives (e.g., authenticate). No exclusions or alternatives are mentioned, so it falls short of a 5 but provides clear context for typical usage.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
marketplaceAInspect
The official mcp.ai marketplace — the in-platform catalog of every MCP/tool, AND the way to run them. Covers capability requests like "find an MCP that does X", "consulta um CPF", "is there a tool for Y". Core flow: action=search discovers MCPs by intent → describe returns one MCP's full profile (every tool with its id + params, pricing, auth) so you pick the right tool_id → invoke RUNS that tool. KEY: invoke works even when the MCP is NOT installed — it runs the tool pontualmente (one-off), without adding the MCP to the toolkit and without bloating the tool list. If the MCP needs a credential/login, invoke returns a connect link; if it is paid and the wallet is empty, invoke returns a checkout/top-up link (the user opens it, then you retry). Use install only to make an MCP PERMANENT in the active toolkit (its tools then show up natively in future sessions); prefer invoke for a single/occasional use. list_tools lists what is callable right now. subscribe/cancel handle per-MCP billing; report_bug sends feedback; request_mcp asks us to build a NEW MCP when nothing fits. Search/describe flag installed_in_toolkit vs installed_in_workspace. Writes (install/uninstall/subscribe/cancel and the one-off install behind invoke) require workspace owner/admin. It also carries the mcp.ai PROMPT LIBRARY, which is about ready-made prompt TEXT rather than MCPs: search_prompts finds one, get_prompt returns its full text with {{variables}} filled, and publish_prompt saves a prompt and returns a shareable mcp.ai/p/ link that opens without login.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | ||
| query | No | ||
| action | No | search | |
| mcp_id | No | ||
| message | No | ||
| tool_id | No | ||
| arguments | No | {} | |
| immediate | No | ||
| tier_slug | No | ||
| prompt_body | No | ||
| prompt_slug | No | ||
| prompt_tool | No | ||
| prompt_vars | No | {} | |
| conversation | No | [] | |
| prompt_title | No | ||
| request_name | No | ||
| cancel_reason | No | ||
| cancel_comment | No | ||
| prompt_targets | No | ||
| report_context | No | ||
| prompt_category | No | ||
| request_details | No | ||
| prompt_description | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Even though annotations are minimal (readOnlyHint=false, destructiveHint=false), the description discloses critical behavioral details: invoke runs tools without permanently installing them; install makes MCPs permanent; credential requirements trigger connect links; payments may require wallet top-up; and search/describe flag installed_in_toolkit vs installed_in_workspace. This goes well beyond the annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is long but intentionally dense, covering an unusually complex tool with many actions, subfeatures, and caveats. It is organized logically: summary → core flow → key caveats → permission/authentication → prompt library feature. Every sentence adds unique value, though the length might challenge quick 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?
For a tool with 23 parameters, no output schema, and weak annotations, the description is remarkably complete: it covers core actions, edge cases (connect links, checkout links), permission requirements, and a nested prompt-library feature. Some gaps remain: it doesn't list every action in the schema (e.g., 'resume', 'list_tools' is mentioned but not fully bound to action values), and it doesn't explain the response format or retry logic in more 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?
With 0% schema coverage and 23 parameters, the description does heavy lifting by explaining the 'action' parameter values (search, describe, install, uninstall, subscribe, cancel, resume, list_tools, search_prompts, get_prompt, publish_prompt) and the purpose of prompt-related parameters (prompt_body, prompt_slug, prompt_vars, prompt_tool, prompt_title, prompt_category, prompt_targets). However, many parameter meanings (e.g., conversation, request_details, report_context, immediate, tier_slug) are only implicitly covered. No parameter syntax details are provided, but the description gives enough high-level meaning for an agent to infer usage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly identifies the tool as the mcp.ai marketplace, encompassing catalog search, MCP execution via invoke, installation, subscription management, and prompt library access. It uses specific verbs (search, describe, invoke, install, list_tools) and distinguishes itself from generic 'marketplace' sibling tools by explaining its unique scope.
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 when-to-use guidance: use invoke for one-off tasks, install for permanent toolkit additions, list_tools to see callable tools, request_mcp for new MCPs, and the prompt library functions for prompt text. It also clarifies the flow for auth (connect link) and payment (checkout/top-up link) and notes that writes require owner/admin access.
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?
The description adds context about including the conversation array for reproduction, which is beyond what annotations provide. It does not mention side effects, rate limits, or idempotency, but annotations already declare readOnlyHint=false, idempotentHint=true, and destructiveHint=false. The description doesn't contradict annotations and modestly supplements them.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences, front-loaded with the core purpose and immediately followed by a practical usage note. There is no fluff, redundant wording, or unnecessary detail. Every sentence 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?
Given the simplicity of the tool (3 string parameters, no nested objects, no output schema), the description covers the essential aspects: what it does and what to include. It lacks explanation of 'context' and potential return values, but for a simple tool with decent annotations, this is adequate. It could be slightly richer by clarifying all parameters.
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 must compensate. It explains the 'conversation' parameter by saying 'Include the conversation array with recent messages for reproduction.' However, it does not clarify the meaning of 'context' or add detail to 'message' beyond its obvious role as the report content. Partial compensation, but incomplete for all 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: 'Report a bug, missing feature, or send feedback.' This is a specific verb-action-resource combination that unambiguously indicates the tool's function. It also naturally distinguishes itself from sibling tools (auth, version, etc.) which serve different purposes.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides a concrete usage instruction: 'Include the conversation array with recent messages for reproduction.' This guides the agent on how to invoke the tool correctly. However, it does not explicitly state when to use this tool versus alternatives, though no direct alternatives appear among siblings. The lack of explicit 'when to use / when not to use' diminishes the score.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
sefaz_rj_certidao_debitos_cert_consultarBRead-onlyIdempotentInspect
SEFAZ RJ: Certidão Negativa de Débitos (Certificado Digital), consulta em fonte oficial. Hospedado pela plataforma, sem credenciais da plataforma, pague por consulta com crédito pré-pago. Consulta informação de fontes e órgãos oficiais brasileiros (a mesma disponível ao cidadão), não é dado sigiloso. O cliente é o controlador dos dados e responde pela finalidade legítima (LGPD).
| Name | Required | Description | Default |
|---|---|---|---|
| ie | No | ||
| cnpj | No | ||
| pkcs12_cert | Yes | ||
| pkcs12_pass | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Beyond the readOnlyHint annotation, the description discloses that the operation is a query, requires prepaid credits, does not need platform credentials, and involves data privacy responsibilities under LGPD. It also clarifies that the data is not confidential, adding transparency about the data handling.
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 somewhat verbose and repetitive, repeating the same ideas about official sources, LGPD, and payment. While it is not excessively long, it could be more concise by removing redundant phrases and focusing on essential facts.
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 description provides good context about the purpose, payment, and data privacy, but it omits details about expected output format and parameter usage. Given the lack of an output schema and parameter explanations, the description is not fully complete for a user to understand how to invoke the tool effectively.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema has four parameters (ie, cnpj, pkcs12_cert, pkcs12_pass) with no descriptions, and the tool description does not explain any of them. The mention of 'Certificado Digital' hints at the certificate parameters but does not map them clearly, leaving parameter semantics completely 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 states that this tool consults a negative debt certificate (Certidão Negativa de Débitos) from SEFAZ RJ using a digital certificate. It explicitly mentions the source as official and distinguishes it from generic tools like authenticate or connect.
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 lacks explicit guidance on when to use this tool versus alternatives. It mentions payment and lack of credentials but does not specify scenarios where this tool is preferred or required over other methods.
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 specify readOnlyHint, idempotentHint, and destructiveHint, providing the safety profile. The description adds no extra behavioral context beyond what the name implies. This aligns with the baseline where annotations exist; there is no contradiction, but the description could have mentioned that no authentication is required or that it performs a network call, though none is necessary.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
A single sentence, directly front-loaded with the action and object, with no unnecessary words. Every word 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 parameterless, stateless tool with no output schema, the description is entirely sufficient. It fully explains what the tool does and what the agent can expect (version information). No gaps exist.
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, the schema is complete and the description need not explain parameters. The baseline of 4 applies as per the rubric for zero-parameter tools, and the description adds no irrelevant or missing 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 'Show the current MCP platform and adapter versions' uses a specific verb ('show') and resource ('MCP platform and adapter versions'), clearly distinguishing it from siblings like 'toolkit_info' which might have broader scope. It unambiguously states the tool's function.
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 when an agent needs current version information, which is clear from context. No alternatives are mentioned, but none are needed for a simple version query. The main gap is not explicitly stating when *not* to use it (e.g., if another tool also reports versions), but this feels minor given the tool's specificity.
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 aligns perfectly. It adds behavioral context beyond the annotations by specifying the detailed contents of the returned toolkit state (installed MCPs, connection status, accounts, tool counts), giving the agent a concrete idea of what to expect.
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 that front-loads the core purpose and uses a clear list to enumerate the returned state components. Every phrase earns its place with no redundancy or filler.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a zero-parameter, read-only status tool with no output schema, the description is sufficiently complete. It names the key return categories (installed MCPs, connection status, connected accounts, catalog tool count) so an agent knows what to expect without needing a separate 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?
The tool has zero parameters, so the description carries no parameter documentation burden. With an empty input schema and 100% schema description coverage, there is nothing for the description to add about parameter semantics; baseline 4 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 uses a specific verb ('Returns') and clearly enumerates the exact resource and content: installed MCPs, connection status, connected accounts, and catalog tool counts. This distinguishes it from sibling tools like show_version or report_bug by specifying exactly what toolkit state is covered.
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 no explicit guidance on when to use this tool versus alternatives. It implies a status-checking role but does not state when to prefer it over show_version or other sibling tools, nor does it mention any exclusions or prerequisites.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Servers
- Alicense-qualityCmaintenanceConsulta a Certidão Negativa de Débitos em fonte oficial da SEFAZ RJ, com uma ferramenta de leitura via MCP over HTTP, hospedada na plataforma com crédito pré-pago.MIT
- Alicense-qualityCmaintenanceEnables users to query SEFAZ CE regularity certificates (Certidão de Regularidade) from official sources, providing read-only access for tax compliance verification in the state of Ceará, Brazil.MIT
- Alicense-qualityCmaintenanceProvides read-only access to query negative debt certificates (certidão negativa de débitos) from SEFAZ RO, the state finance department of Rondônia, Brazil, using official sources.MIT
- Alicense-qualityCmaintenanceProvides read-only consultation of official SEFAZ Paraíba negative debt certificates, enabling users to check tax debt status via a single tool.MIT
Your Connectors
Sign in to create a connector for this server.