SEFAZ MA DEC: Caixa Postal
Server Details
SEFAZ MA 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_ma_dec_caixa_postal-mcp
- GitHub Stars
- 0
- Server Listing
- SEFAZ MA 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 3.9/5 across 7 of 7 tools scored. Lowest: 3.2/5.
Most tools have clearly distinct purposes (authentication, connection status, marketplace, bug reporting, version, toolkit state, and the specific SEFAZ query). However, 'connect' and 'toolkit_info' both surface connection status and could cause minor confusion. The marketplace tool is broad but well-described, covering many sub-actions within one clear role.
Naming follows no unified pattern: verbs (authenticate, connect, show_version, report_bug), nouns (marketplace, toolkit_info), and a long snake_case domain tool (sefaz_ma_dec_caixa_postal_consultar) are mixed. This inconsistency makes it harder for an agent to predict tool names for similar actions.
With 7 tools, the count is within a reasonable range. However, only one tool is domain-specific; the rest are generic platform administration utilities that could belong to a separate server. Still, the total is not overbearing and each tool has a clear role.
For the stated domain (consulting Caixa Postal via SEFAZ MA), the single tool covers the core query operation. But there are no other related operations (e.g., list, history, batch) and the platform tools dominate the surface, making the domain coverage feel thin. An agent would have to rely on external tools for any adjacent functionality.
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 indicate idempotent, non-destructive, and non-read-only behavior. The description adds useful context about the browser flow, the permanent config option, and the session-only paste option. However, it does not disclose what happens when an invalid token is passed, whether the token is stored, or what response the tool returns in success/failure cases.
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 three sentences and contains actionable information without fluff. It is dense but slightly cluttered by the embedded code span and multiple conditional instructions; a more structured format (e.g., bullet points) would improve scanability, but it remains acceptably concise.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
There is no output schema, so the description must explain return behavior; it only states that calling with no args returns the login link. It does not explain what the tool returns when a token is provided, how errors are surfaced, or the expected success confirmation. For an authentication flow, this is a notable completeness gap, but the core invocation options are covered.
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 only lists an optional 'token' string with no description. The description compensates by explaining that the token is a JWT pasted by the user, that it must be passed as { token: "<jwt>" }, and that omitting the argument triggers the login-link behavior. This adds meaningful semantic context beyond the bare schema.
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 communicates that the tool authenticates an MCP.AI session for IDE agents: it provides a browser login link, accepts a pasted JWT token, or instructs users to configure a permanent header. It is specific about the resource (MCP.AI authentication) and the available invocation modes, though it does not explicitly name itself as the authentication action beyond 'log in'.
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 practical usage guidance: adding the token to server config for a permanent connection is recommended, while passing the token in this call is for session-only login; calling with no args returns the login link. This clearly distinguishes when to use each invocation pattern, though it does not mention sibling tools or conditions where authentication might not be needed.
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 declare readOnlyHint, idempotentHint, and destructiveHint false, so the safety profile is known. The description adds valuable behavioral context beyond annotations by specifying the exact response shapes in different states (authenticated:true with empty pending[] vs. connect_url), which is not covered by 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 three sentences: the first states the primary function, the second and third explain conditional output. Every sentence earns its place with no redundant or irrelevant information. It is front-loaded with the core 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?
The description explains the two main states (all connected vs. missing credentials) and the return values, which is sufficient for a no-parameter tool with no output schema. However, it doesn't cover intermediate partial-connection states, leaving a minor gap in completeness.
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 schema is vacuous. Per the rubric, 0 params gives a baseline of 4. The description doesn't need to add parameter meaning since there are none.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool returns connection status and URLs, with specific verb and resource. It distinguishes itself from siblings like 'authenticate' by focusing on status checking rather than performing auth. The two conditional behaviors (all connected vs. missing credentials) further clarify its purpose.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage for checking connection status, but lacks explicit guidance on when to use this over alternatives like 'authenticate'. It doesn't mention 'use this when you need to verify connection state' or exclude other scenarios, so the guidance is only implied, not explicit.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
marketplaceAInspect
The official mcp.ai marketplace — the in-platform catalog of every MCP/tool, AND the way to run them. Covers capability requests like "find an MCP that does X", "consulta um CPF", "is there a tool for Y". Core flow: action=search discovers MCPs by intent → describe returns one MCP's full profile (every tool with its id + params, pricing, auth) so you pick the right tool_id → invoke RUNS that tool. KEY: invoke works even when the MCP is NOT installed — it runs the tool pontualmente (one-off), without adding the MCP to the toolkit and without bloating the tool list. If the MCP needs a credential/login, invoke returns a connect link; if it is paid and the wallet is empty, invoke returns a checkout/top-up link (the user opens it, then you retry). Use install only to make an MCP PERMANENT in the active toolkit (its tools then show up natively in future sessions); prefer invoke for a single/occasional use. list_tools lists what is callable right now. subscribe/cancel handle per-MCP billing; report_bug sends feedback; request_mcp asks us to build a NEW MCP when nothing fits. Search/describe flag installed_in_toolkit vs installed_in_workspace. Writes (install/uninstall/subscribe/cancel and the one-off install behind invoke) require workspace owner/admin. It also carries the mcp.ai PROMPT LIBRARY, which is about ready-made prompt TEXT rather than MCPs: search_prompts finds one, get_prompt returns its full text with {{variables}} filled, and publish_prompt saves a prompt and returns a shareable mcp.ai/p/ link that opens without login.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | ||
| query | No | ||
| action | No | search | |
| mcp_id | No | ||
| message | No | ||
| tool_id | No | ||
| arguments | No | {} | |
| immediate | No | ||
| tier_slug | No | ||
| prompt_body | No | ||
| prompt_slug | No | ||
| prompt_tool | No | ||
| prompt_vars | No | {} | |
| conversation | No | [] | |
| prompt_title | No | ||
| request_name | No | ||
| cancel_reason | No | ||
| cancel_comment | No | ||
| prompt_targets | No | ||
| report_context | No | ||
| prompt_category | No | ||
| request_details | No | ||
| prompt_description | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Even with annotations present (readOnlyHint:false, openWorldHint:true), the description meaningfully extends beyond them. It discloses that invoke runs tools one-off 'without adding the MCP to the toolkit and without bloating the tool list', that writes (install/uninstall/subscribe/cancel and the one-off install behind invoke) require workspace owner/admin, and that invoke returns connect/checkout links requiring user action then retry. No contradiction with annotations 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 information-dense with genuinely useful content, but it is delivered as a single continuous run-on paragraph with no bullet points, sections, or headings. It covers three distinct domains (MCP catalog flow, billing/installs, prompt library) without structural separation. Every sentence earns its place, but the formatting undermines scannability for an agent.
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 very complex tool (23 params, 14-action enum, no output schema), the description covers the primary flows thoroughly: search→describe→invoke, install vs invoke distinction, auth ownership requirements, payment link behavior, and the separate prompt-library sub-flow. Gaps remain in peripheral actions (resume, uninstall details, cancel workflow specifics) and return-value descriptions for search/list_tools, but the core usage is well covered.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
With 0% schema description coverage, the description must compensate, and it does for the core flow: it maps action enum values to behaviors and explains tool_id/mcp_id/arguments usage in the search→describe→invoke flow. However, many of the 23 parameters (prompt_vars, conversation, tier_slug, cancel_reason, cancel_comment, prompt_targets, request_details, immediate, etc.) receive no semantic explanation, so compensation is only partial.
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 specific, multi-faceted purpose: it is the in-platform MCP catalog and execution tool ('the official mcp.ai marketplace — the in-platform catalog of every MCP/tool, AND the way to run them'). It clearly distinguishes itself from siblings (authenticate, show_version, toolkit_info, sefaz_ma_dec_caixa_postal_consultar) by being the catalog/runner rather than a specific capability, and explicitly contrasts install vs invoke vs list_tools.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Provides explicit when-to-use guidance: 'prefer invoke for a single/occasional use', 'Use install only to make an MCP PERMANENT in the active toolkit', and spells out the core flow 'search discovers MCPs by intent → describe returns one MCP's full profile... so you pick the right tool_id → invoke RUNS that tool'. Also covers the retry pattern (connect/checkout link then retry) and the prompt-library sub-flow, naming search_prompts/get_prompt/publish_prompt with distinct roles.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
report_bugBIdempotentInspect
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 already provide safety cues (readOnlyHint=false, destructiveHint=false, idempotentHint=true). The description adds the instruction to include the conversation array for reproduction, which is useful context about expected input. However, it does not disclose what happens after submission (e.g., ticket creation, error handling), though the annotation coverage lowers the burden.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise, using a single sentence with two clauses. It front-loads the purpose and provides one actionable hint. No unnecessary text, though it could be slightly more structured (e.g., separating purpose and parameter guidance).
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 has three parameters, no output schema, and no description of return values or error behavior. The description covers the basic purpose and one parameter hint but omits details on the other parameters, expected format for the conversation (likely JSON string), and post-submission effects, making it incomplete for a reporting 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?
Schema description coverage is 0%, so the description must compensate. It mentions the conversation parameter ('Include the conversation array') but does not clarify the required 'message' parameter or optional 'context' parameter. This leaves the agent unsure about what to supply beyond conversation.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: 'Report a bug, missing feature, or send feedback.' The verb 'report' and resource (bug/feature/feedback) are specific and distinguish it from sibling tools like authenticate, connect, or toolkit_info, which serve different functions.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies when to use the tool (when encountering a bug, missing feature, or providing feedback) but does not explicitly mention when not to use it or contrast with alternative tools. Since siblings are unrelated, the usage context is understood but not formally stated.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
sefaz_ma_dec_caixa_postal_consultarBRead-onlyIdempotentInspect
SEFAZ MA 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 | ||
| filtro | 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 already declare readOnlyHint=true, idempotentHint=true, destructiveHint=false. The description adds valuable context: hosted by the platform, no platform credentials required, pay-per-query with prepaid credit, and LGPD responsibilities. These details go beyond the annotations and help set agent expectations about cost and legal scope.
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 concise four-sentence paragraph that front-loads the primary purpose ('consulta em fonte oficial') before covering hosting, payment, and LGPD. Each sentence adds meaningful context, though the legal boilerplate could be trimmed for an agent-focused description.
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 five parameters, no output schema, and no description of return values or mailbox specifics, the tool feels incomplete. The description focuses on commercial and legal aspects but lacks functional details about what the query does, what inputs are required, and what the agent should expect in the response.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, and the description does not explain any of the five parameters (ie, filtro, pkcs12_cert, pkcs12_pass, ignora_nao_lidas). It only vaguely mentions official data and credentials in general. The agent cannot infer what filters or flags mean, making the tool hard to use correctly.
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 'consulta em fonte oficial' for 'Caixa Postal' from SEFAZ MA, providing a specific verb and resource. It is distinct from the generic sibling tools (authenticate, marketplace). However, it does not explain what 'caixa postal' contains beyond being an official source, so it is not perfectly explicit.
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 use for querying official Brazilian tax/regulatory data, noting it's the same info available to citizens and not confidential. There is no explicit statement of when to use this instead of alternatives or when not to use it, but the context provides enough implied guidance.
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 state read-only, non-destructive, and idempotent behavior, and the description is consistent with them. It adds useful context by specifying that both the MCP platform and adapter versions are included, though it does not describe output shape or edge cases.
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 with no waste. Every word adds meaning.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's simplicity, zero parameters, and read-only annotations, the description is largely sufficient for an agent to select and invoke it. It briefly explains what output to expect, though a sentence naming toolkit_info as the alternative for broader environment details would improve completeness.
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?
This tool has zero parameters and 100% schema coverage, so there is no parameter ambiguity for the agent to resolve. A no-parameter tool baseline of 4 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly names the action ('Show') and the resource ('current MCP platform and adapter versions'), so an agent can tell what the tool returns. It is specific, but it does not explicitly differentiate itself from sibling tools like toolkit_info.
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 should be used when an agent needs version information, but it gives no explicit guidance about when to choose it over toolkit_info or other sibling tools. For a zero-parameter informational tool, this implied usage is enough.
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 readOnly, idempotent, and non-destructive, so the description only adds the specific data returned. It does not contradict annotations. Given the high-quality annotations, the description does not need to repeat them, but could mention that no state changes occur; however, the annotation covers this adequately.
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 uses a colon to enumerate the returned components. It is concise and to the point, with no wasted words or redundancy.
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?
No output schema is provided, so the description must explain what is returned. It does so comprehensively by listing the exact data points (installed MCPs, connection status, accounts, catalog tool counts), fully meeting the context needs.
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, so schema coverage is effectively 100%. The description provides no parameter information, which is acceptable since there are none. Per the rubric, baseline is 3 when coverage is high.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool returns the current toolkit state, listing specific elements (installed MCPs, connection status, accounts, catalog tool counts). This distinguishes it from sibling tools like authenticate or connect, which have action-oriented 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 implicitly indicates this is a read-only status check, suitable when needing an overview of the toolkit. It does not explicitly mention alternatives, but the action-oriented siblings (authenticate, connect) are distinct enough that usage is clear. A brief note on when to use it versus other tools would earn a 5.
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
- -license-quality-maintenanceProvides a single tool to consult SEFAZ PE DEC Caixa Postal data from an official source, using prepaid credits and magic-link authentication.
- 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 for querying SEFAZ AL DEC Caixa Postal data from the official source, enabling reading and writing via one tool in any MCP-compatible client. It is hosted with prepaid per-use credits and requires no platform credentials.MIT
- -license-quality-maintenanceProvides a single MCP tool to query SEFAZ PA DEC Caixa Postal (official Brazilian tax mailbox notifications) with pre-paid credits via HTTP.
Your Connectors
Sign in to create a connector for this server.