Skip to main content
Glama

SEFAZ MG: NFC-e Resumida

Server Details

SEFAZ MG: NFC-e Resumida, official-source lookup. Platform-hosted, pay per query with prepaid credit

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL
Repository
mcp-dir/sefaz_mg_nfce_resumida-mcp
GitHub Stars
0
Server Listing
SEFAZ MG NFC-e Resumida

Glama MCP Gateway

Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.

MCP client
Glama
MCP server

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.

100% free. Your data is private.
Tool DescriptionsA

Average 4/5 across 7 of 7 tools scored. Lowest: 3.2/5.

Server CoherenceB
Disambiguation4/5

The platform tools (authenticate, connect, marketplace, report_bug, show_version, toolkit_info) are largely distinct in purpose. The only domain tool (sefaz_mg_nfce_resumida_consultar) is clearly separate. However, connect and toolkit_info both report connection/status information, causing minor ambiguity.

Naming Consistency2/5

Tool names follow no consistent pattern: some are imperative verbs without underscores (authenticate, connect, report_bug, show_version), some are nouns (marketplace, toolkit_info), and the single domain tool uses a long snake_case prefix (`sefaz_mg_nfce_resumida_consultar`). This mixing of styles and languages makes the set feel erratic.

Tool Count4/5

With 7 tools, the count itself is reasonable and not overwhelming. However, the scope is broad—six platform utilities plus one domain-specific query—so the count feels appropriate for a general-purpose platform MCP, even if it diverges from the server's SEFAZ-specific name.

Completeness3/5

The platform functions (auth, status, marketplace, version, info, bug reporting) cover their obvious needs. For the stated SEFAZ MG NFC-e purpose, only a single query tool exists, which may be sufficient if that's the sole operation, but there are no exploratory or supplementary operations (e.g., list available documents or other tax endpoints), leaving potential gaps for a specialized server.

Available Tools

7 tools
authenticateA
Idempotent
Inspect

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
tokenNo
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already indicate idempotent and non-destructive behavior. The description adds meaningful context: browser login flow, permanent config vs session-only token, and the no-args behavior returning a link. No contradiction with annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is compact and front-loaded with the core purpose, followed by actionable setup options. It is slightly dense with multiple instructions, but every sentence contributes useful information.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple auth tool with one optional parameter and no output schema, the description covers the main invocation modes and setup steps. It does not describe response formats or error cases, but those are not critical at this complexity level.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema has one optional 'token' parameter with no description, and schema coverage is 0%. The description compensates by explaining the token is a JWT to paste, and that omitting it returns the login link. This is sufficient for the single parameter.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

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 an IDE agent by logging in via browser, copying the access token, and either configuring it permanently or using it for a session. It distinguishes itself from siblings by explicitly framing this as the authentication entry point for MCP.AI.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description gives explicit usage guidance: prefer adding the token to server config for a permanent connection, or paste it for a session-only login, and call with no args to get the login link. It does not explicitly compare against sibling tools like 'connect', but the usage modes are clear enough.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

connectA
Read-onlyIdempotent
Inspect

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.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already indicate a safe, read-only, idempotent operation. The description adds meaningful conditional behavior—explaining what happens when all providers are connected versus when credentials are missing—which goes 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.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two sentences, front-loaded with the core purpose, followed by concise details on conditional outputs. Every sentence adds value with no redundancy or filler.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given no output schema, the description appropriately covers the main return values and state-dependent behavior. It is slightly limited by not explaining the meaning of pending[] or partial connection states, but overall sufficient for a simple status tool.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

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, so there is nothing to explain. The description still usefully documents the semantic fields in the response, such as authenticated, pending[], and connect_url.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool returns connection status and URLs, with specific field names and conditional behavior. It distinguishes this from siblings like authenticate or show_version by focusing on the current connection state.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies this is for checking whether providers are connected and obtaining connection URLs, but it does not explicitly state when to use it versus siblings like authenticate. There is no exclusion or alternative guidance, only implied 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.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNo
queryNo
actionNosearch
mcp_idNo
messageNo
tool_idNo
argumentsNo{}
immediateNo
tier_slugNo
prompt_bodyNo
prompt_slugNo
prompt_toolNo
prompt_varsNo{}
conversationNo[]
prompt_titleNo
request_nameNo
cancel_reasonNo
cancel_commentNo
prompt_targetsNo
report_contextNo
prompt_categoryNo
request_detailsNo
prompt_descriptionNo
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Beyond the annotations, the description reveals important behaviors: invoke runs non-installed MCPs without bloating the toolkit, write operations require owner/admin, auth and checkout cases return user-facing links, and search/describe reports whether an MCP is installed. This substantially exceeds what the schema or annotation booleans communicate.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is front-loaded and every sentence contributes functional information. It is dense and written as one wall of text rather than bullets or grouped flows, so the structure could be better, but for a tool with many actions and edge cases the length is largely justified.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The description covers the main end-to-end usage: discovery, describe, invoke, install, uninstall, billing, permission requirements, and the prompt library. It does not explain return shapes for search, list_tools, report_bug, or publish_prompt, and no output schema exists, so a few result expectations remain implicit.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

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 23 parameters. It does explain the central action orchestration, mcp_id, tool_id, and prompt_vars/prompt_slug roles, but many parameters such as arguments, immediate, tier_slug, conversation, cancel_comment, and request_details are never semantically mapped.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description precisely identifies the tool as the mcp.ai marketplace catalog and execution layer, defining a core search → describe → invoke flow. It also separates the MCP-management actions from the prompt-library actions, making the tool's role distinct from its sibling tools.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description gives actionable decision rules: prefer invoke for one-off use, use install only when permanent presence is needed, use list_tools to see what is currently callable, and request_mcp when nothing fits. It also explains the credential and payment link scenarios, which clarifies when a retry is expected.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

report_bugA
Idempotent
Inspect

Report a bug, missing feature, or send feedback. Include the conversation array with recent messages for reproduction.

ParametersJSON Schema
NameRequiredDescriptionDefault
contextNo
messageYes
conversationNo[]
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations are present (readOnlyHint=false, idempotentHint=true, destructiveHint=false) and not contradicted by the description. The description adds minimal behavioral context beyond the annotations, such as the optional conversation parameter for reproduction. The description could have added more about data transmission or privacy implications but is acceptable given the annotation coverage.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, dense sentence that front-loads the purpose and immediately follows with the key usage tip. There is no wasted wording, and the structure is perfect for an agent to quickly parse.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple feedback-reporting tool with three primitive parameters and no output schema, the description provides enough context to understand its function and how to use it. It doesn't over-explain, but for its intended, low-complexity use case, it is complete. A advanced point could be made about including message content, but it's not necessary.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, so the description must compensate. It explicitly mentions the 'conversation' parameter, explaining its purpose ('with recent messages for reproduction'). However, it does not clarify 'context' or 'message', leaving some interpretation to the schema defaults. While partially helpful, it does not fully compensate for the missing schema documentation.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the purpose with a specific verb and resource: 'Report a bug, missing feature, or send feedback.' This unambiguously differentiates it from the unrelated sibling tools. It is concise and leaves no doubt about what the tool does.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides a clear usage guideline: 'Include the conversation array with recent messages for reproduction.' This gives context on how to use the tool effectively. While it doesn't explicitly mention when not to use it, the instruction is sufficient for a feedback-reporting tool.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

sefaz_mg_nfce_resumida_consultarB
Read-onlyIdempotent
Inspect

SEFAZ MG: NFC-e Resumida, 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).

ParametersJSON Schema
NameRequiredDescriptionDefault
nfceYes
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The description adds behavioral details beyond the annotations, such as the official source, no platform credentials, pay-per-consultation, non-confidential data, and LGPD responsibility. This provides context about the tool's operation and constraints.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness2/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is repetitive, stating 'consulta em fonte oficial' and later 'Consulta informação de fontes e órgãos oficiais brasileiros' which is redundant. It also repeats 'sem credenciais' and 'pague por consulta' in slightly different forms, affecting conciseness.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The description provides some context about the official source and payment, but fails to explain the input parameter or the expected output. With no output schema, agents are left without a clear understanding of what the tool returns.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters1/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The sole parameter 'nfce' is described only as a string with no explanation in the schema or description. Its meaning is not elaborated, leaving agents uncertain about what value to provide.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose: 'SEFAZ MG: NFC-e Resumida, consulta em fonte oficial' indicating a consultation for NFC-e summary from an official source. It is distinct 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.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage for consulting NFC-e summaries but does not provide explicit guidance on when to use it versus alternatives. It mentions payment and prepaid credits, which gives some usage context, but lacks a clear 'use when' statement.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

show_versionA
Read-onlyIdempotent
Inspect

Show the current MCP platform and adapter versions.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already cover key behavioral aspects: readOnlyHint=true, destructiveHint=false, idempotentHint=true. The description adds no new behavioral details (e.g., what exactly is returned or whether network calls are made). Since the tool is trivial and annotations are strong, a 3 is appropriate: it doesn't contradict, but also doesn't add much beyond annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, clear sentence that conveys the tool's purpose efficiently. There is no unnecessary verbiage; every word earns its place. This is exemplary conciseness.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool is extremely simple (no parameters, no output schema, strong annotations), the description is complete enough. The agent knows exactly what the tool does, and annotations cover safety/repeatability. There is nothing missing for effective use.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

This tool has no parameters, so the description doesn't need to explain any. The schema coverage is 100% trivially (empty properties). With zero parameters, the baseline is 4, and the description is adequate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose: showing version information for the MCP platform and adapters. It uses a specific verb ('Show') and identifies the resource ('MCP platform and adapter versions'). While it doesn't differentiate from siblings, the siblings are unrelated, so no differentiation is needed; thus a 4 is appropriate.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage: call when you need version information. It doesn't explicitly state when not to use it or mention alternatives, but given the tool is a simple getter with no parameters, minimal guidance is needed. Sibling tools like 'toolkit_info' could overlap, but without more context, a 3 is fair.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

toolkit_infoA
Read-onlyIdempotent
Inspect

Returns the current toolkit state: installed MCPs, their connection status, the accounts connected to each one, and how many catalog tools each exposes.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already disclose that this is a read-only, idempotent, and non-destructive operation, so the bar for added transparency is lower. The description adds useful context about what the response contains, but it does not go further to explain behavior like whether this makes network calls to probe MCP connections or whether the output is stable over time. This is acceptable, though not exemplary.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, dense sentence that packs in the exact resource and the categories of information returned. There is no filler, no repetition of the name, and no unnecessary background. Every word adds meaning.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

A zero-parameter tool with no output schema depends on the description to explain what the agent will receive; this description does that comprehensively by naming — installed MCPs, connection status, connected accounts, and catalog tool counts. For a simple, read-only introspection tool, this is complete enough to drive correct selection and invocation.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The tool accepts zero parameters, so there are no parameter semantics to explain. The description correctly does not waste words on parameters, and the baseline of 4 applies for no-parameter tools.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

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 identifies the resource ('current toolkit state'), then enumerates key elements: installed MCPs, connection statuses, connected accounts, and catalog tool counts. This distinguishes it from the listed siblings, especially show_version, because it describes an overall state inventory rather than just a version string.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The intended use is implied but not explicit: if an agent needs an overview of the current toolkit state, this tool is the natural choice. However, the description does not say when not to use it, nor does it contrast it with related peers like connect, authenticate, or show_version, so contrastive guidance is missing.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Discussions

No comments yet. Be the first to start the discussion!

Related MCP Servers

  • A
    license
    -
    quality
    C
    maintenance
    Provides read-only consultation of Rio Grande do Sul NFC-e (electronic invoice) data from the official SEFAZ RS source via a hosted MCP server with pay-per-query credits.
    MIT
  • A
    license
    -
    quality
    C
    maintenance
    Provides a single read-only tool to consult NFC-e (electronic invoice) data from SEFAZ Amazonas via MCP over HTTP, with prepaid credits.
    MIT
  • A
    license
    -
    quality
    C
    maintenance
    Provides read-only consultation of official SEFAZ SC NFC-e tax data via a single tool, with prepaid per-query credits and works with any MCP client.
    MIT

View all MCP Servers

Try in Browser

Your Connectors

Sign in to create a connector for this server.