SEFAZ RO: NFC-e Completa
Server Details
SEFAZ RO: NFC-e Completa, official-source lookup. Platform-hosted, pay per query with prepaid credit
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- mcp-dir/sefaz_ro_nfce_completa-mcp
- GitHub Stars
- 0
- Server Listing
- SEFAZ RO: NFC-e Completa
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: 2.9/5.
The 'marketplace' tool is a massive catch-all that buries search, invoke, install, subscribe, billing, and a prompt library under one umbrella, forcing agents to parse a huge wall of text to find the right sub-operation. Additionally, 'connect', 'toolkit_info', and 'authenticate' all touch on connection/auth status, creating real ambiguity about which to call when checking session state.
The naming mixes single lowercase verbs ('authenticate', 'connect'), snake_case verbs ('report_bug', 'show_version'), a snake_case noun phrase ('toolkit_info'), and a long Portuguese domain-specific token ('sefaz_ro_nfce_completa_consultar') that doesn't follow the verb-first pattern. 'marketplace' is a noun (and sometimes acts as a verb) with no verb to indicate action, so there is no coherent convention to predict names from.
At 7 tools the raw number is reasonable, but the distribution is nonsensical: 6 of 7 tools manage the MCP platform itself while a single tool carries the entire SEFAZ domain. The 'marketplace' tool alone describes the surface area of 10+ distinct operations, so the set is both overstuffed (billing, prompts, installs in one) and under-scoped for its stated purpose.
The SEFAZ RO tool only supports 'consultar' (query), which may serve a narrow use case but offers no way to fetch full NFC-e details, handle authentication for the tax authority, or cover other document types/lifecycle operations the name 'NFC-e Completa' implies. The platform half is also thin: connect/authenticate are one-shot checks, and the real management surface is hidden inside the monolithic marketplace tool, making the actual capability surface hard to discover or reuse.
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?
Discloses side effects: permanent connection via config modification, session-only via paste. Idempotent annotation (true) aligns with description's mention of repeated token use. Does not contradict annotations, but could explicitly state that calling with no args returns a link (already implied).
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 slightly verbose but well-structured with 'Best:' and 'Or' sections. It conveys all necessary information without redundancy, though could be tightened.
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?
Covers the authentication process, parameter usage, and outcomes (permanent vs session). Missing explicit return value description, but the mention of 'get the link' hints at the response. Overall complete for a simple authentication tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The token parameter is explained: it's a JWT that the user pastes, and it's optional since passing no args retrieves the link. This compensates for the lack of schema description, though it doesn't detail the token's format beyond 'jwt'.
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: to authenticate by logging in via browser and obtaining an access token. It distinguishes itself from sibling tools like connect or marketplace by focusing specifically on authentication flow.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Provides explicit when-to-use guidance: for IDE agents needing authentication, with clear steps for permanent (config) vs session-only (paste) usage. Also mentions alternatives (no args to get link) and how to call with token.
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?
The description goes beyond annotations by explaining what happens in different scenarios: returns authenticated:true and empty pending[] when all providers are connected, and returns connect_url and per-install URLs when credentials are missing. This adds useful behavioral context beyond the readOnly and idempotent hints.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise, consisting of two sentences that front-load the main purpose and then provide conditional details. No unnecessary information is included.
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 a good overview of the tool's behavior and output, covering two primary scenarios. However, it does not exhaustively list all possible states (e.g., partially connected providers), but for a simple status-check tool, it is sufficiently complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
There are no parameters, so the schema coverage is 100%. The description does not need to explain parameters, and the baseline of 3 is appropriate since no additional meaning is required.
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 the tool returns connection status and URLs, and explains the behavior for different states (all providers connected vs missing credentials). This distinguishes it from sibling tools like 'authenticate' which likely handles authentication.
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. It implies usage for checking connection status, but lacks explicit guidance like 'use this to check if credentials are configured before calling authenticate'.
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?
Annotations only provide high-level hints (readOnlyHint=false, destructiveHint=false, openWorldHint=true). The description adds critical behavioral details: invoke works even when MCP not installed, requires credentials or payment possibly, returns connect/checkout links, and writes require workspace owner/admin. It also explains the distinction between installed_in_toolkit vs installed_in_workspace. This goes beyond annotations and is very valuable. Missing a bit on idempotency or error cases, but good coverage.
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 long paragraph that is information-dense but not structured (no bullet points or clear action mapping). It is somewhat lengthy and streams many details without clear organization, making it hard to parse. It could be improved by separating the marketplace flow from the prompt library and using bullets for each action. It is not wasteful but could be better structured.
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 enormous complexity (actions, prompt library, install vs invoke, auth), the description covers many critical points like auth requirements, payment, and the difference between one-off and permanent installs. However, it lacks explanations for several actions (resume, subscribe, cancel details) and does not describe return formats for commands. Considering the huge schema (23 params), the description is not fully complete to guide an agent without more 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 0% description coverage, with 23 parameters but the description does not map the parameters to the actions. It mentions 'action=search', 'tool_id', 'arguments', 'mcp_id', and 'prompt_slug' implicitly, but most parameters (e.g., 'request_name', 'prompt_title', 'conversation', 'immediate', 'tier_slug') are left entirely to the schema without clue as to which action uses them. Given the low coverage, the description must compensate but only does minimally.
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 marketplace for MCPs and prompts, with a detailed breakdown of actions (search, describe, invoke, install, etc.). However, the scope is very broad (encompassing both MCP catalog and prompt library), which slightly muddies a single clear purpose. It does distinguish from siblings by positioning itself as the main platform hub versus specific tools like sefaz_ro_nfce_completa_consultar.
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 substantial guidance on when to use each action: 'search discovers MCPs by intent → describe returns one MCP's full profile... invoke RUNS that tool', and explicitly contrasts invoke vs install ('prefer invoke for a single/occasional use; use install only to make an MCP PERMANENT'). It also mentions when to use list_tools and subscribe/cancel. However, it does not explicitly state when NOT to use this tool versus alternatives outside the sibling set, and some actions like resume are not explained, lowering the score.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
report_bugCIdempotentInspect
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 indicate idempotentHint=true, readOnlyHint=false, and destructiveHint=false. The description does not contradict these, but it also does not add any transparency beyond the annotations. It does not explain what happens after submission (e.g., if it creates a ticket, sends an email, or logs internally) or any side effects, which is important given that readOnlyHint=false implies a write operation. The description is minimal and does not carry the burden of behavioral disclosure.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise, consisting of two sentences, and front-loaded with the main purpose. It uses efficient language without unnecessary detail. The structure is clear: first the purpose, then a key usage hint. It earns a high score for brevity, but slightly loses because it might have used a bit more space to explain parameters, though that is a completeness issue not a conciseness issue.
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?
This tool has no output schema, no annotations that explain behavior beyond basic hints, and only the description to guide the agent. The description is too brief to be complete for a tool that handles bug reports and feedback. It needs to explain the 'context' parameter, what happens after submission, and possibly mention that the conversation should be a JSON array string. Given the moderate complexity (3 parameters, one required), the description leaves significant gaps in operational 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%, so the description must compensate for parameter meaning. The description mentions 'message' (the bug report) and 'conversation' (to include recent messages for reproduction), but it does not explain 'context' at all. The parameter 'context' is completely undocumented, leaving the agent with no semantic understanding of what to put there. The description adds some value for 'message' and 'conversation' but fails to cover 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: to report bugs, missing features, or send feedback. It specifies the resource (issue/feedback) and the action (report/send). It distinguishes from siblings because siblings are about authentication, connectivity, marketplace, a specific consultation, and version info, none of which overlap with bug reporting.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies when to use the tool: when there is a bug, missing feature, or feedback. It gives a guideline to include the conversation array for reproduction. However, it does not explicitly state when not to use it or mention alternative tools (e.g., for general support or feature requests versus code issues), missing an opportunity for clearer differentiation.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
sefaz_ro_nfce_completa_consultarBRead-onlyIdempotentInspect
SEFAZ RO: NFC-e Completa, 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 |
|---|---|---|---|
| nfce | 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 covered. The description adds context about payment (prepaid credits), data source (official, same as available to citizens), and LGPD compliance responsibilities, which goes beyond annotations. No contradiction.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single paragraph with several sentences, but it is relatively concise and front-loaded with the core purpose. It includes necessary context about payment and legal compliance, though some sentences could be trimmed without losing essential information.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool has only one parameter and no output schema, the description covers the main purpose and some operational details (payment, data source, LGPD). However, it lacks information about the expected input format and what the response contains, which is important for a tool that returns data. The description is adequate but not 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?
Schema description coverage is 0%, and the description does not explain the 'nfce' parameter beyond its name. The description mentions 'consulta' but does not specify what format the nfce string should take (e.g., access key, number), leaving the agent without guidance on how to construct the parameter.
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 queries official SEFAZ RO NFC-e data, specifying the resource (NFC-e Completa) and the source (official). It distinguishes from siblings by focusing on a specific Brazilian tax document query, though it doesn't explicitly contrast with other tools.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage for querying official Brazilian tax information, but does not provide explicit when-to-use or when-not-to-use guidance, nor does it mention alternatives. It mentions payment via prepaid credits, which is a usage condition, but lacks clear context for selection.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
show_versionARead-onlyIdempotentInspect
Show the current MCP platform and adapter versions.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, covering safety. The description adds that it reports platform and adapter versions, which is consistent with these hints. It adds no extra behavioral details (e.g., no network or side effects), but the tool is trivial and annotations carry the burden.
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, complete sentence that directly states the action and output. No fluff or redundancy. Perfectly concise.
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 extremely simple with no parameters and no output schema. The description fully covers what the tool does. No additional context is needed for an agent to select and invoke it correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has zero parameters, so there is nothing to explain. Per guidelines, baseline is 4 for 0-parameter tools. The description correctly omits any param detail.
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 shows the current MCP platform and adapter versions. It uses a specific verb ('Show') and resource ('version'), and is unambiguous given the sibling tools (e.g., connect, report_bug) are unrelated.
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 tool's purpose is self-explanatory; it is for retrieving version information. There are no alternatives or complex decision points, so explicit 'when to use' guidance is unnecessary. However, it doesn't mention any context like 'run when diagnosing compatibility,' but the simplicity makes this acceptable.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
toolkit_infoARead-onlyIdempotentInspect
Returns the current toolkit state: installed MCPs, their connection status, the accounts connected to each one, and how many catalog tools each exposes.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is well-covered. The description adds value by specifying what the state includes (installed MCPs, connection status, accounts, catalog tool counts), which goes beyond the annotations. It doesn't mention any side effects, but given the read-only and idempotent hints, that's not necessary. No contradiction.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence that is concise and front-loaded with the main purpose ('Returns the current toolkit state'). It lists the key elements without unnecessary detail. 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?
Given the tool has no parameters, no output schema, and simple annotations, the description is sufficient. It tells the agent what the tool does and what information it provides. It could potentially mention that the output is a summary or list, but the description already covers the key aspects. The tool is simple, so completeness is high.
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 the schema is empty. The description doesn't need to explain parameters, and the baseline for 0 params is 4. The description adds context about what the tool returns, which is useful for the agent to know what to expect.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool returns the current toolkit state, listing specific elements: installed MCPs, connection status, connected accounts, and catalog tool counts. This is a specific verb+resource combination that distinguishes it from siblings like show_version (which likely returns version info) and connect/authenticate (which modify state).
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 this is a read-only informational tool for checking toolkit state, which is clear from the context. It doesn't explicitly state when to use it versus alternatives, but the sibling names (connect, authenticate, marketplace) suggest these are action-oriented, while this is a status query. A slight gap is not naming alternatives explicitly, but the purpose is clear enough.
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 resumida de NFC-e em fonte oficial da SEFAZ Rondônia, via ferramenta somente leitura. Permite consultar dados fiscais por linguagem natural em qualquer cliente MCP compatível.1MIT
- Alicense-qualityCmaintenanceProvides a single read-only tool to consult NFC-e (electronic invoice) data from SEFAZ Amazonas via MCP over HTTP, with prepaid credits.MIT
- Alicense-qualityCmaintenanceEnables querying SINTEGRA RO (Brazilian tax registration) data from official sources via a single read-only tool, with prepaid credit usage and compatibility with any MCP client.MIT
- Alicense-qualityCmaintenanceEnables consultation of official SEFAZ GO NFC-e (Brazilian electronic invoice) data via a read-only MCP server with pre-paid credits.MIT
Your Connectors
Sign in to create a connector for this server.