Cemig: Download de Contas para Profissionais
Server Details
Cemig: Bill Download para Profissionais, official-source lookup. Platform-hosted, pay per query with
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- mcp-dir/contas_cemig_download_pro-mcp
- GitHub Stars
- 0
- Server Listing
- Cemig: Download de Contas para Profissionais
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.1/5 across 7 of 7 tools scored. Lowest: 3.2/5.
The tool set mixes platform-level utilities (authenticate, connect, marketplace, report_bug, show_version, toolkit_info) with a single domain-specific tool (contas_cemig_download_pro_consultar). The platform tools have overlapping purposes: connect, toolkit_info, and authenticate all deal with connection/status, and marketplace's invoke/install/subscribe functions overlap with toolkit management. The one domain tool is clearly distinct, but the platform tools blur together.
Naming is inconsistent: some tools use snake_case (contas_cemig_download_pro_consultar), others use lowercase single words (authenticate, connect, marketplace, report_bug, show_version, toolkit_info). There's no consistent verb_noun pattern; 'marketplace' is a noun, 'connect' is a verb, 'toolkit_info' mixes noun and noun. The domain tool's name is verbose and doesn't follow the same style as the others.
Seven tools is a reasonable count, but the server's stated purpose is 'Download de Contas para Profissionais' (downloading bills for professionals), yet only one tool (contas_cemig_download_pro_consultar) actually serves that purpose. The other six are generic platform utilities that could be shared across any MCP server, making the count feel padded for the specific domain.
For the domain of downloading Cemig bills, the server only offers a single 'consultar' (query) operation. There's no tool to list available bills, download a specific bill, manage payment, or handle multiple accounts. The platform tools (authenticate, connect, marketplace) are complete for their purpose, but the domain-specific surface is severely incomplete—just one query tool with no lifecycle or supporting operations.
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 idempotentHint=true and destructiveHint=false. The description adds context about the authentication flow (browser login, token persistence) and the optionality of arguments, which is beyond annotations. It doesn't deeply describe the behavior of the token validation or session lifecycle, but given annotations cover safety, this is adequate. No contradiction found.
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 but contains dense, helpful information. It front-loads the audience (IDE agents) and main action (log in in the browser, copy token), then elaborates on the two options. It could be slightly more structured (e.g., bullet points), but it remains concise with no filler words, earning a 4.
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 simple with one optional parameter, no output schema, and no nested objects. The description covers the two usage modes (config-based permanent and session-only), explains the parameter semantics, and gives context about the token format (JWT). For this complexity, it is nearly complete; it could mention expected return values (e.g., success/failure response) but that is minor.
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 and only declares 'token' as a string with no description. The description compensates by explaining the token parameter: it should be a JWT pasted by the user for session-only login, and that omitting it returns a login link. This adds significant meaning beyond the schema, upgrading from baseline 3 to 4, though it could clarify the token format (e.g., JWT) more explicitly.
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: to authenticate IDE agents by logging in via browser or providing a token. It specifies the resource (authentication) and the action (authenticate), and distinguishes itself from siblings by focusing on the login mechanism, though it does not explicitly name alternatives. It reads as a clear purpose statement.
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 instructions: recommend adding a bearer token to the server config for permanent access, or calling with a token for session-only login, or calling with no args to get the login link. It clearly states when to use the tool (when needing to authenticate) and the modes of invocation, though it doesn't explicitly mention when not to use it compared to alternatives.
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, covering safety. The description adds valuable behavioral detail about conditional responses (authenticated:true with empty pending[] vs. connect_url), which goes beyond annotations and helps the agent predict tool behavior.
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 ('Returns connection status and URLs'), followed by concise conditional details. No redundant or filler language; 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?
For a zero-parameter, read-only tool with no output schema, the description adequately explains the return behaviors (authenticated:true, pending[], connect_url). It could clarify what 'per-install URLs' means, but overall it is sufficient for an agent to use the tool 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, and the schema coverage is 100% (vacuously). Per the rubric, a baseline of 4 is appropriate. The description does not need to elaborate on parameters since there are none, and it adds no misleading parameter 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 tool's function: 'Returns connection status and URLs.' It distinguishes itself from siblings like 'authenticate' by focusing on status checking rather than initiating authentication, and provides specific outcomes (authenticated:true, empty pending[], connect_url).
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 tool is for checking connection status, but it does not explicitly state when to use it versus alternatives like 'authenticate'. The conditional behavior (when providers connected vs. missing credentials) gives context, but there is no explicit 'use this when' or 'use authenticate instead' guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
contas_cemig_download_pro_consultarBRead-onlyIdempotentInspect
Cemig: Download de Contas para Profissionais, 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 |
|---|---|---|---|
| login_senha | Yes | ||
| login_usuario | Yes | ||
| numero_instalacao | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare read-only, idempotent, and non-destructive behavior. The description adds meaningful context: prepaid credit consumption per query, no platform credentials required, non-confidential official data, and LGPD accountability. This goes beyond the schema and annotations, though it doesn't mention rate limits or response format.
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, using three short sentences to convey purpose, payment model, and legal context. There is slight repetition of 'official source' and 'official bodies', but overall it is front-loaded and efficient.
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?
There is no output schema, no parameter descriptions, and no mention of return type or expected response. While it provides high-level purpose and legal/payment context, an agent would be uncertain about what the tool returns and how to map the required inputs to their real-world meaning.
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 input schema has 3 required string parameters with 0% coverage, and the description never explains login_usuario, login_senha, or numero_instalacao. It mentions credentials generically but doesn't clarify that these are Cemig professional login credentials or that numero_instalacao is the electricity installation number, leaving the agent with no parameter understanding.
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 a Cemig bill download/query service for professionals, using official sources. This distinguishes it from the generic siblings (authenticate, connect, marketplace, etc.), though it could be more explicit by stating the exact action and return type in a verb-driven sentence.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
It implies when to use: to query official Brazilian data without platform credentials, paying with prepaid credits, under LGPD responsibilities. However, it doesn't explicitly name alternatives or exclusions, leaving the use case implied rather than fully specified.
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?
The description adds substantial behavioral context beyond the annotations. It explains the one-off execution model of invoke, the connect-link behavior for missing credentials, the checkout/top-up link for insufficient wallet funds, the retry workflow, and the workspace-owner/admin requirement for writes. It also discloses installed_in_toolkit vs installed_in_workspace flagging. This goes far beyond what readOnlyHint/openWorldHint/idempotentHint/destructiveHint convey.
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 every sentence conveys necessary operational or selection information. It is well-structured: core flow, key invoke behavior, install-vs-invoke distinction, other actions, permissions, and the prompt library are separated logically. No filler or repetition exists.
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 and no output schema, the description covers a remarkable amount: core flows, auth, payment, permissions, installed-status flags, and prompt-library semantics. The only notable omissions are detailed return-value expectations and the resume action, which is listed in the schema but never mentioned in the description. Still, this is highly complete for its complexity.
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 carries the burden of explaining parameters. It does explain the meaning of many action values (search, describe, invoke, install, list_tools, etc.) and the role of tool_id in selecting a tool. However, it does not cover numerous non-action parameters such as arguments, immediate, tier_slug, conversation, prompt_vars, cancel_reason, or request_details. It provides high-level action semantics but lacks precise parameter-level guidance, leaving gaps for an agent trying to construct a complete request.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description opens with a clear, specific declaration: 'The official mcp.ai marketplace — the in-platform catalog of every MCP/tool, AND the way to run them.' It then names the concrete capability requests it handles ('find an MCP that does X', 'consulta um CPF') and outlines the search → describe → invoke flow. This strongly distinguishes it from siblings 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?
Usage guidance is explicit and comprehensive. It contrasts invoke vs install with direct instruction: 'prefer invoke for a single/occasional use' and 'Use install only to make an MCP PERMANENT in the active toolkit.' It also clarifies when to use list_tools, subscribe/cancel, report_bug, request_mcp, and the prompt-library functions, providing both positive and negative selection criteria.
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 a useful detail about including the conversation for reproduction, which goes beyond annotations. However, annotations already disclose idempotency, read-only, and destructive hints. The description remains consistent with these annotations, though it doesn't elaborate on side effects or outcomes. It provides moderate value beyond what annotations already state.
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 long, directly addresses the purpose and a critical usage detail, and contains no fluff. Every word earns its place, making it highly efficient.
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 feedback tool with 3 flat parameters and no output schema, the description covers the essential context, especially the conversation reproduction detail. The only minor gap is the undefined 'context' parameter, but overall it is adequately complete for the tool's complexity.
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 is the only guide for parameters. It explicitly explains the 'conversation' parameter (calling it an array) and implies the 'message' parameter is the bug/feedback text. However, the 'context' parameter is left undefined, and the description's use of 'array' slightly conflicts with the schema's string type for 'conversation'. It partially compensates for the lack of schema descriptions.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose with a specific verb ('Report') and resource ('a bug, missing feature, or send feedback'). It effectively distinguishes itself from sibling tools like 'authenticate' and 'connect' by focusing on bug/feedback submission. The additional instruction to include the conversation array adds clarity about its role in reproduction.
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 explicitly tells when to use the tool ('Report a bug, missing feature, or send feedback') and gives a key usage instruction ('Include the conversation array...'). While it doesn't explicitly name alternatives, the sibling tools are contextually unrelated, making the intended usage clear without needing exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
show_versionARead-onlyIdempotentInspect
Show the current MCP platform and adapter versions.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The annotations already declare readOnly, idempotent, and non-destructive behavior. The description adds no further context (e.g., about rate limits or side effects), but the existing annotations sufficiently cover transparency. No contradiction between description and annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, concise sentence that directly conveys the tool's purpose with no unnecessary details. It is well-structured and easy to parse.
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?
There is no output schema, but the description implies the tool returns version information, which is enough for a simple read-only operation. It doesn't specify the output format, but for a version check, this is acceptable and not misleading.
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, which matches the description. Since there are no params to explain, the baseline score of 4 applies, and the description correctly omits param details.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's function: showing current MCP platform and adapter versions. The verb 'Show' and specific resource 'current MCP platform and adapter versions' precisely define its purpose, distinguishing it from sibling 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 does not explicitly state when to use this tool versus alternatives, but it is a straightforward version check with no clear alternative in the sibling set. The intent is implicit, but an explicit note about when to call it (e.g., for diagnostics) would improve clarity.
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 value by specifying what state is returned (installed MCPs, connection status, accounts, catalog tool counts), which is useful behavioral context 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 a single, front-loaded sentence that conveys all essential information without redundancy or filler. Every word contributes to understanding the tool's purpose.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a zero-parameter, read-only state inspection tool with strong annotations, the description fully covers what the tool returns and when it is relevant. No output schema exists, but the enumerated return contents are sufficient for this simple 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 tool has zero parameters, so the baseline is 4. The description does not need to explain parameter semantics, and no parameter information is missing.
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 identifies the exact resource ('current toolkit state') with enumerated content: installed MCPs, connection status, accounts, and catalog tool counts. This clearly distinguishes it from sibling tools like connect or authenticate.
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 the use case clear: call this tool when you need an overview of the toolkit's current state. It does not explicitly mention alternatives or exclusions, but the context is sufficiently clear given the sibling tools.
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-qualityCmaintenanceEnables users to query and download Cemig electricity bills from official sources via natural language, with read-only access and pre-paid credits across various MCP clients.MIT
- Alicense-qualityCmaintenanceMCP server to query Cemig installations from the official source, read-only, works with any MCP client, pay-per-use.MIT
- Alicense-qualityCmaintenanceThis MCP server provides a single read-only tool to query official CPFL (electric utility) bill download data via a hosted, prepaid service without requiring platform credentials.MIT
- Alicense-qualityCmaintenanceEnables users to consult and download second copies (2ª via) of Comgás gas bills from the official source via a read-only tool, with prepaid per-query credit.MIT
Your Connectors
Sign in to create a connector for this server.