SEFAZ MT DEC: Caixa Postal
Server Details
SEFAZ MT DEC: Caixa Postal, official-source lookup. Platform-hosted, pay per query with prepaid cred
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- mcp-dir/sefaz_mt_dec_caixa_postal-mcp
- GitHub Stars
- 0
- Server Listing
- SEFAZ MT DEC: Caixa Postal
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
Full call logging
Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.
Tool access control
Enable or disable individual tools per connector, so you decide what your agents can and cannot do.
Managed credentials
Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.
Usage analytics
See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.
Tool Definition Quality
Average 4.2/5 across 7 of 7 tools scored. Lowest: 3.5/5.
The tools are mostly distinct, but 'authenticate' and 'connect' have overlapping purposes around connection/auth status, and 'marketplace' is a multi-purpose tool that mixes MCP discovery, execution, and prompt library functions, which could confuse an agent about which tool to use for a given task.
Naming is inconsistent: some tools use snake_case (sefaz_mt_dec_caixa_postal_consultar), some use lowercase single words (authenticate, connect, marketplace), and others use underscores (report_bug, show_version, toolkit_info). There is no consistent verb_noun pattern, and the main domain tool is named differently from the rest.
With 7 tools, the count is reasonable for a server that wraps a single SEFAZ consultation plus platform management utilities. It is slightly heavy because several tools (report_bug, show_version, toolkit_info) are generic platform features, but still within an acceptable range.
The server's stated purpose is SEFAZ MT DEC Caixa Postal consultation, but there is only one domain-specific tool (sefaz_mt_dec_caixa_postal_consultar). There are no tools for managing queries, viewing history, or handling multiple consultation types, and the rest are generic platform utilities. The domain surface is severely thin.
Available Tools
7 toolsauthenticateAIdempotentInspect
MCP.AI for IDE agents (Cursor, etc.): log in in the browser, copy the access token. Best: add it to this server's config as a header Authorization: Bearer <token> for a permanent, non-expiring connection. Or paste it here for a session-only login: call with { token: "" } after the user pastes, or with no args to get the link.
| Name | Required | Description | Default |
|---|---|---|---|
| token | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already mark the tool as idempotent and non-destructive; the description adds meaningful context about token persistence (permanent via config header vs session-only via paste) and explains that calling with no args yields a browser login link. It does not mention invalid-token behavior or response details, but it adds value 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.
Is the description appropriately sized, front-loaded, and free of redundancy?
Three dense sentences, front-loaded with the tool's purpose and user workflow. Every clause adds info: audience, browser login, token source, permanent vs session persistence, and call forms.
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 one-parameter optional-token tool, the description covers the main invocation modes and user workflow well. The main gap is the lack of any mention of the response/return value or failure cases, though no output schema exists to fill that gap.
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 coverage is 0%, but the description compensates by explaining that `token` is an optional JWT used for session-only login and that omitting it triggers the login-link flow. This gives the agent clear functional meaning for the single 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 identifies the tool as the MCP.AI authentication entry point for IDE agents, with a specific flow: log in via browser, copy token, then use it. It is clear enough to distinguish from siblings like `show_version` or `report_bug`, though it does not explicitly contrast itself with the `connect` sibling.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives explicit invocation patterns: call with `{ token: "<jwt>" }` to paste a session token, or call with no args to get a login link. It also contrasts a permanent config-header approach with a session-only token approach, providing practical usage context.
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:true, idempotentHint:true, and destructiveHint:false. The description adds valuable context beyond that, specifying exact output conditions (authenticated:true and empty pending[] when connected, connect_url when credentials missing), which is not derivable from 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 two sentences, front-loaded with the purpose, and every sentence earns its place. It avoids redundancy and provides necessary details on two distinct states.
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?
With 0 parameters and no output schema, the description fully covers the tool's behavior: what it returns in different scenarios. It is complete for a status-checking tool, and the description adequately explains the return values.
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 0 parameters, and per the baseline the score is 4. The description correctly adds no parameter details since none exist. It explains the output sufficiently without needing parameter semantics.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: 'Returns connection status and URLs.' It uses a specific verb (returns) and resource (connection status, URLs), and it distinguishes from siblings like authenticate or marketplace by focusing solely on status retrieval.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives clear context on when the tool is relevant (checking connection status) and describes behavior under different conditions (connected vs missing credentials). It does not explicitly name alternatives or state 'use this when...', but the context is sufficient for a simple status tool.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
marketplaceAInspect
The official mcp.ai marketplace — the in-platform catalog of every MCP/tool, AND the way to run them. Covers capability requests like "find an MCP that does X", "consulta um CPF", "is there a tool for Y". Core flow: action=search discovers MCPs by intent → describe returns one MCP's full profile (every tool with its id + params, pricing, auth) so you pick the right tool_id → invoke RUNS that tool. KEY: invoke works even when the MCP is NOT installed — it runs the tool pontualmente (one-off), without adding the MCP to the toolkit and without bloating the tool list. If the MCP needs a credential/login, invoke returns a connect link; if it is paid and the wallet is empty, invoke returns a checkout/top-up link (the user opens it, then you retry). Use install only to make an MCP PERMANENT in the active toolkit (its tools then show up natively in future sessions); prefer invoke for a single/occasional use. list_tools lists what is callable right now. subscribe/cancel handle per-MCP billing; report_bug sends feedback; request_mcp asks us to build a NEW MCP when nothing fits. Search/describe flag installed_in_toolkit vs installed_in_workspace. Writes (install/uninstall/subscribe/cancel and the one-off install behind invoke) require workspace owner/admin. It also carries the mcp.ai PROMPT LIBRARY, which is about ready-made prompt TEXT rather than MCPs: search_prompts finds one, get_prompt returns its full text with {{variables}} filled, and publish_prompt saves a prompt and returns a shareable mcp.ai/p/ link that opens without login.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | ||
| query | No | ||
| action | No | search | |
| mcp_id | No | ||
| message | No | ||
| tool_id | No | ||
| arguments | No | {} | |
| immediate | No | ||
| tier_slug | No | ||
| prompt_body | No | ||
| prompt_slug | No | ||
| prompt_tool | No | ||
| prompt_vars | No | {} | |
| conversation | No | [] | |
| prompt_title | No | ||
| request_name | No | ||
| cancel_reason | No | ||
| cancel_comment | No | ||
| prompt_targets | No | ||
| report_context | No | ||
| prompt_category | No | ||
| request_details | No | ||
| prompt_description | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description adds valuable behavioral context beyond annotations: invoke runs MCPs even without installing them, returns connect links when credentials are missing, returns checkout/top-up links when paid capabilities need payment, and install/uninstall/subscribe/cancel require owner/admin. It also explains that publish_prompt returns a shareable short 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.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is dense and somewhat run-on, but given the tool's complexity (23 parameters, many sub-actions, prompt category additions), the length is largely justified and every sentence adds useful context. It is front-loaded with the core purpose and flow, though it could benefit from a more structured bullets/list format.
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, so the description must cover meaningful return/traffic values. It does for the important cases: describe returns tool profiles with id/params/pricing/auth, invoke can return connect or checkout links, and publish_prompt returns a shareable slug. However, it stays vague on the exact output shape for search, list_tools, cancel/resume/report_bug, and leaves some reader inference required.
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 23 parameters and 0% description coverage, so this description must compensate. It explains the high-level meaning of the central action field and key orchestrations (search, describe, invoke, install, etc.), but it leaves many parameters—such as limit, immediate, tier_slug, conversation, prompt_vars details, and report_context—uncovered. It is far better than nothing, but not enough to fully scaffold correct invocation for every sub-action.
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 defines the tool as "the official mcp.ai marketplace" and the central place to discover and run MCPs, with a concrete core flow (search → describe → invoke). It is reasonably specific, but it does not explicitly distinguish itself from the sibling report_bug or toolkit_info tools, and it bundles many sub-capabilities inside one dispatcher, so it lacks sharp sibling differentiation.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives explicit use guidance: prefer invoke for one-off use, use install only to make the MCP permanent, use search/describe for discovery, list_tools for currently-callable tools, and request_mcp when nothing fits. It also clarifies that writes require workspace owner/admin, which is a strong usage constraint.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
report_bugAIdempotentInspect
Report a bug, missing feature, or send feedback. Include the conversation array with recent messages for reproduction.
| Name | Required | Description | Default |
|---|---|---|---|
| context | No | ||
| message | Yes | ||
| conversation | No | [] |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations establish it is non-destructive, non-read-only, and idempotent. The description adds useful behavioral context by instructing the agent to include the conversation array for reproduction, which is more than the annotations provide. It does not contradict any annotation and gives a key usage detail.
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 with no filler. It front-loads the purpose and follows with a single practical instruction. Every word earns its place, making it highly concise and well-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?
For a tool with 3 parameters and no output schema, the description covers the main purpose and one parameter clearly, but it does not explain the 'context' parameter or emphasize that 'message' is required. Given the 0% schema coverage, the description should provide more complete parameter guidance to be fully self-sufficient.
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 coverage is 0%, so the description must compensate for parameter meaning. It explicitly mentions the 'conversation' parameter and clearly implies the 'message' parameter (the bug/feedback content). However, the 'context' parameter is left undefined, so the description only partially clarifies parameter semantics.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a clear, specific purpose: 'Report a bug, missing feature, or send feedback.' This is a specific verb+resource combination that distinguishes it from unrelated sibling tools. It also provides an actionable instruction about including the conversation array, further clarifying its role.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description clearly indicates when to use the tool: when reporting a bug, missing feature, or feedback. It does not explicitly state exclusions or alternatives, but the sibling tools are unrelated, so the context is sufficient. A full 'use this instead of X' is not necessary given the tool's unique purpose.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
sefaz_mt_dec_caixa_postal_consultarARead-onlyIdempotentInspect
SEFAZ MT DEC: Caixa Postal, consulta em fonte oficial. Hospedado pela plataforma, sem credenciais da plataforma, pague por consulta com crédito pré-pago. Consulta informação de fontes e órgãos oficiais brasileiros (a mesma disponível ao cidadão), não é dado sigiloso. O cliente é o controlador dos dados e responde pela finalidade legítima (LGPD).
| Name | Required | Description | Default |
|---|---|---|---|
| ie | No | ||
| cpf | No | ||
| cnpj | No | ||
| pagina | No | ||
| pkcs12_cert | Yes | ||
| pkcs12_pass | Yes | ||
| ignora_nao_lidas | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations indicate read-only, idempotent, and non-destructive, which are consistent with the description's 'consulta' (query) nature. The description adds useful context about data governance (LGPD), control, and the fact that it is not confidential data, beyond what annotations cover.
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 compact and front-loaded with the core purpose. It includes necessary legal and commercial disclaimers, which are relevant, though it could be slightly more 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?
With 7 parameters and no schema descriptions, the description leaves much unexplained: what each parameter is for, how they combine (e.g., do ie/cpf/cnpj select the mailbox?), and what the response contains. It also lacks any mention of authentication flow, which is crucial given the pkcs12 credentials.
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 coverage is 0%, so the description needed to explain parameters. While it lists some parameters indirectly (e.g., 'ie', 'cpf', 'cnpj' could be identifiers for the mailbox), it does not explain any parameter's purpose or format. The description mentions credentials are not platform credentials but does not explain the pkcs12_cert and pkcs12_pass parameters beyond that.
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 SEFAZ MT's official mailbox ('Caixa Postal') and is a consultation tool, which distinguishes it from siblings like authenticate or marketplace. However, the exact resource being queried (e.g., DEC mailbox) is somewhat implicit and could be clarified.
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 explains this is a paid per-query service using prepaid credits and that it accesses official Brazilian data available to citizens, implying use for legitimate public data queries. It does not provide explicit when-to-use vs alternatives, but given sibling tools are unrelated, the context is adequate.
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 no extra behavioral context beyond restating the action, but it does not contradict annotations. With annotation coverage, a neutral score is appropriate.
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 with no redundant wording. It efficiently conveys the tool's function without any fluff.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a zero-parameter, read-only version tool with no output schema, the description is complete. It fully explains what the tool does, and no additional context is necessary.
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 are no parameter semantics to clarify. The description is sufficient since schema coverage is 100% with no parameters, warranting the baseline score.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action (show) and the resource (current MCP platform and adapter versions). It is specific and distinct from sibling tools like authenticate or connect, which have different purposes.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description does not explicitly state when to use versus alternatives, but the purpose is unambiguous—a simple version info tool that naturally fits its use case. No exclusions are needed given its trivial nature.
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, covering the safety profile. The description adds content about what the return includes, which goes beyond annotations, but it does not disclose any additional behaviors such as performance, caching, or authentication requirements. With annotations covering the main aspects, this is satisfactory but not exceptional.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, well-structured sentence that front-loads the tool's purpose ('Returns the current toolkit state') and then lists the concrete components. Every word adds value, and there is no redundancy or unnecessary detail.
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 there is no output schema, the description carries the full burden of explaining what the tool returns. It does so effectively by listing the key elements: installed MCPs, connection status, connected accounts, and catalog tool counts. This completes the picture for a status tool, especially with the safety annotations already present.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has no parameters (0 params, schema coverage 100%), so the baseline score is 4 per the rubric. The description need not explain any parameters since there are none. It effectively communicates that the tool takes no input and returns a state summary.
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 the current toolkit state' and enumerates its components (installed MCPs, connection status, accounts, catalog tool counts). This uses a specific verb ('returns') and a resource ('toolkit state'), and distinguishes it from sibling tools like authenticate or connect, which perform actions rather than report 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 usage: if you need toolkit state, this tool provides it. However, it does not explicitly state when to use it versus alternatives, nor does it mention any exclusions or conditions. For a status tool, the usage context is fairly obvious, but the lack of explicit guidance keeps it at an adequate level.
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-qualityCmaintenanceMCP server for consulting SEFAZ CE DEC Caixa Postal (official Brazilian tax mailbox) via a hosted official API, with a single query tool. Works with any MCP client over HTTP using prepaid credits.MIT
- Alicense-qualityCmaintenanceMCP server that enables querying SEFAZ MA DEC Caixa Postal information from the official source through a single tool. Works with any MCP client and uses prepaid credits, with no platform credentials required.MIT
- Alicense-qualityCmaintenanceProvides a single tool to consult SEFAZ PE DEC Caixa Postal data from an official source, using prepaid credits and magic-link authentication.MIT
- Alicense-qualityCmaintenanceEnables consultation of SEFAZ RJ DEC Caixa Postal data from official sources via MCP, using one read/write tool with prepaid credits and no platform credentials.MIT
Your Connectors
Sign in to create a connector for this server.