SEFAZ PR DEC: Caixa Postal
Server Details
SEFAZ PR 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_pr_dec_caixa_postal-mcp
- GitHub Stars
- 0
- Server Listing
- SEFAZ PR DEC: Caixa Postal MCP Server
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/5 across 7 of 7 tools scored. Lowest: 2.9/5.
The tools are mostly distinct: authenticate handles login, connect checks status, marketplace manages MCP discovery/execution, report_bug handles feedback, and show_version/toolkit_info provide system info. The sefaz tool is clearly domain-specific. However, show_version and toolkit_info could be confused as both display system state, and marketplace is a broad multi-action tool that might blur boundaries.
The naming is inconsistent: some are single-word verbs (authenticate, connect), some are compound with underscores (report_bug, toolkit_info), one is a noun (marketplace), and one is a long domain-specific phrase (sefaz_pr_dec_caixa_postal_consultar). No uniform pattern in verb/noun usage or underscore/camelCase style.
Seven tools is a reasonable number for a server that combines generic MCP management (auth, connection, marketplace, version, toolkit info, bug reporting) with a single domain-specific query. It is neither sparse nor bloated, fitting the apparent scope.
The server covers essential administrative functions (auth, connect, marketplace, version, toolkit info, bug reporting) but the domain-specific capability is limited to a single consultation tool. There is no indication of broader operations like listing, updating, or deleting records for the 'Caixa Postal' domain, leaving potential gaps for users expecting fuller CRUD coverage.
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?
With annotations already indicating non-read-only, idempotent, and non-destructive behavior, the description adds useful context about permanent vs session-only authentication and the browser login flow. It does not contradict annotations and clarifies expected auth setup behavior, though it stops short of describing internal state changes or failure modes.
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 sentences, each serving a purpose: context, permanent-config recommendation, and session-based usage. It is slightly dense but well organized and front-loaded with the tool's identity.
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 covers the main flow, both authentication modes, and what the user/agent should do. Since there is no output schema, a bit more detail on the returned link or success/failure indicators would help, but for a simple one-parameter tool this is reasonably complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 0%, but the description compensates by explaining the optional 'token' parameter as a JWT obtained from the browser and clarifying the no-args case. This is meaningful beyond the bare string schema, though it could add more detail on token format or expiration.
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 an authentication mechanism for MCP.AI in IDE agents, using specific verbs like 'log in' and 'copy the access token.' It is distinct from siblings like 'connect' and 'show_version' in substance, though it does not explicitly name alternative tools.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives actionable guidance on when to use the tool ('call with { token: "<jwt>" }') and when to prefer the config-header approach ('Best: add it to this server's config...'). It also notes the no-args fallback to get the login link, but does not explicitly exclude any sibling alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
connectARead-onlyIdempotentInspect
Returns connection status and URLs. When all providers are connected, returns authenticated:true and empty pending[]. When credentials are missing, returns connect_url for the toolkit and per-install URLs.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, destructiveHint=false, and idempotentHint=true. The description adds valuable behavioral detail beyond these: it specifies the response for two distinct states (all connected vs. missing credentials), including specific fields like authenticated:true and empty pending[], and the connect_url attribute. This fully covers the tool's behavior.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is compact: two sentences. The first sentence immediately states the core purpose ('Returns connection status and URLs'), and the second adds conditional details. Every sentence earns its place with no redundancy or filler.
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 (0 params, no output schema), the description fully covers the necessary information: what it returns and the two key states. Combined with annotations that handle safety and idempotency, the description is complete and well-rounded.
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 schema coverage is trivially 100%. Per the baseline rule for 0 parameters, a score of 4 is appropriate. The description does not need to explain parameters and instead focuses on output behavior, which is sufficient.
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 a specific verb 'returns' and a defined resource. It distinguishes itself from sibling tools like 'authenticate' and 'show_version' by focusing on status/URLs, making its purpose unambiguous.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides explicit usage scenarios: when all providers are connected and when credentials are missing. It implies when to use this tool (to check connection status) but does not explicitly state when not to use it or mention alternatives, which is a minor gap.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
marketplaceAInspect
The official mcp.ai marketplace — the in-platform catalog of every MCP/tool, AND the way to run them. Covers capability requests like "find an MCP that does X", "consulta um CPF", "is there a tool for Y". Core flow: action=search discovers MCPs by intent → describe returns one MCP's full profile (every tool with its id + params, pricing, auth) so you pick the right tool_id → invoke RUNS that tool. KEY: invoke works even when the MCP is NOT installed — it runs the tool pontualmente (one-off), without adding the MCP to the toolkit and without bloating the tool list. If the MCP needs a credential/login, invoke returns a connect link; if it is paid and the wallet is empty, invoke returns a checkout/top-up link (the user opens it, then you retry). Use install only to make an MCP PERMANENT in the active toolkit (its tools then show up natively in future sessions); prefer invoke for a single/occasional use. list_tools lists what is callable right now. subscribe/cancel handle per-MCP billing; report_bug sends feedback; request_mcp asks us to build a NEW MCP when nothing fits. Search/describe flag installed_in_toolkit vs installed_in_workspace. Writes (install/uninstall/subscribe/cancel and the one-off install behind invoke) require workspace owner/admin. It also carries the mcp.ai PROMPT LIBRARY, which is about ready-made prompt TEXT rather than MCPs: search_prompts finds one, get_prompt returns its full text with {{variables}} filled, and publish_prompt saves a prompt and returns a shareable mcp.ai/p/ link that opens without login.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | ||
| query | No | ||
| action | No | search | |
| mcp_id | No | ||
| message | No | ||
| tool_id | No | ||
| arguments | No | {} | |
| immediate | No | ||
| tier_slug | No | ||
| prompt_body | No | ||
| prompt_slug | No | ||
| prompt_tool | No | ||
| prompt_vars | No | {} | |
| conversation | No | [] | |
| prompt_title | No | ||
| request_name | No | ||
| cancel_reason | No | ||
| cancel_comment | No | ||
| prompt_targets | No | ||
| report_context | No | ||
| prompt_category | No | ||
| request_details | No | ||
| prompt_description | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description adds substantial context beyond the annotations (readOnlyHint=false, openWorldHint=true). It discloses that invoke runs one-off without installing or bloating the tool list, that auth needs return a connect link, that empty wallets return a checkout/top-up link with a retry instruction, and that writes require workspace owner/admin. It also flags installed_in_toolkit vs installed_in_workspace status. 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 a single dense wall of text with no paragraph breaks or bullet lists, despite its considerable length (covering 14 actions plus billing, auth, and the prompt library). The purpose and core flow are appropriately front-loaded, and every sentence carries real information, but the lack of structural organization makes it hard to parse and locate specific action semantics quickly.
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 very high complexity (14 actions, 23 params, no output schema, 0% schema coverage), the description covers the main behavioral flows well — the search→describe→invoke pipeline, one-off execution, auth/payment edge cases, and permission requirements. But it omits per-action return values, does not explain many parameters (limit, query, immediate, tier_slug, conversation), and does not detail cancel/subscribe semantics beyond naming them. Adequate but with clear gaps for a tool this complex.
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 carries full burden for parameter meaning. It does explain the central parameters functionally — action (via the core flow), mcp_id and tool_id ('invoke RUNS that tool... with its id + params'), arguments, and the prompt_* fields. However, roughly half the 23 parameters (limit, query, immediate, tier_slug, conversation, cancel_reason, request_name, prompt_targets, etc.) receive no semantic explanation in the text, leaving those under-documented.
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 opening line, 'The official mcp.ai marketplace — the in-platform catalog of every MCP/tool, AND the way to run them,' gives a specific verb+resource plus scope, clearly identifying this as the discovery-and-execution hub for MCPs. It also distinguishes the prompt-library sub-domain. However, the tool is a 14-action dispatcher spanning search, install, billing, and prompts, so the single 'purpose' is somewhat diffuse across multiple sub-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?
Explicit guidance is abundant: the 'Core flow: action=search → describe → invoke' pipeline explains when each action is appropriate. It explicitly contrasts invoke ('prefer invoke for a single/occasional use') with install ('only to make an MCP PERMANENT'), and clarifies that list_tools reports what is callable right now. It also separates the prompt-library actions (search_prompts/get_prompt/publish_prompt) from MCP management.
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 indicate idempotency but do not clarify side effects (e.g., creating a ticket or sending a message). The description omits behavior details, leaving the tool's actual effect unclear.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, concise sentence with no fluff, directly stating the tool's purpose and one parameter hint.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool is simple, but missing details about parameter usage and expected output or return value make it incomplete for full understanding, though basic usage is clear.
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?
Only 'conversation' is hinted at in the description; 'context' and 'message' lack any schema or description, leaving their purpose and format ambiguous.
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 reports bugs, missing features, or feedback, distinguishing it from sibling tools like authenticate or connect.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
It mentions when to use (reporting issues) but does not explicitly compare to alternatives or state when not to use it, though the purpose is sufficiently clear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
sefaz_pr_dec_caixa_postal_consultarCRead-onlyIdempotentInspect
SEFAZ PR 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 |
|---|---|---|---|
| login_cpf | No | ||
| login_senha | No | ||
| pkcs12_cert | No | ||
| pkcs12_pass | No | ||
| ignora_nao_lidas | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The annotations already signal read-only/idempotent/non-destructive behavior. The description adds valuable context: the tool is hosted without platform credentials, charges per query, and is limited to information the citizen already has access to (not confidential data). It does not, however, disclose what the response looks like or whether external official credentials (e.g. e-CNPJ/certificate) are mandatory.
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 moderately concise, front-loading the main purpose in the first sentence. Subsequent sentences about LGPD and data controller obligations are relevant for compliance but take space away from missing functional guidance; no content is repeated from annotations, yet the legal phrasing could be shortened.
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 undocumented parameters, no output schema, and no per-parameter explanation, the description is incomplete from a tool-invocation standpoint. It gives useful high-level context about the official source, prepaid billing, and platform login usage, but it does not provide enough operational detail for an AI to invoke the tool correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, and the description provides no explanation of any of the five parameters. Parameters like 'login_cpf', 'login_senha', 'pkcs12_cert', 'pkcs12_pass', and 'ignora_nao_lidas' have only Portuguese labels, and the description does not compensate by explaining their meaning, format, or whether they are conditional, making correct invocation difficult.
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 the tool performs a 'consulta' (consultation) on 'Caixa Postal' from 'SEFAZ PR DEC' and is part of official Brazilian sources. This gives a clear verb and resource, distinguishing it from generic siblings like authenticate/report_bug, though 'Caixa Postal' as a mailbox service is not fully elaborated.
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 mentions payment via prepaid credits and the lack of platform credentials, which gives some usage context. However, it never explicitly states when to prefer this tool over alternatives, what qualifies as a valid query, or prerequisites such as possessing the required Brazilian official credentials represented by the input parameters.
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, so the safety profile is known. The description adds specificity beyond annotations by clarifying exactly what versions are shown (platform and adapter), providing useful context. No contradictions exist.
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, direct sentence that front-loads the action ('Show') and specifies the exact content. Every word earns its place; there is no filler or repetition of schema fields.
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 informational tool with full annotation coverage, the description is complete. It fully communicates the tool's function without needing to explain return values or optional behaviors, as none exist.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has zero properties, and the description adds no parameter details—correctly so, since there are no parameters to document. With 0 params, baseline is 4, as there is nothing for the description to compensate for.
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 'Show the current MCP platform and adapter versions' uses a specific verb ('Show') and clearly states the resource (MCP platform and adapter versions). This distinguishes it from sibling tools like authenticate, connect, or marketplace, 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 this tool or mention alternatives, but the purpose is self-evident for a version-reporting utility. Usage is implied (when you need the current MCP platform/adapter versions), but no exclusions or alternatives are provided, so it falls at the 'implied usage' level.
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, and the description is fully consistent with these. It adds behavioral value beyond annotations by specifying exactly what state data is returned, including connection statuses, accounts, and catalog tool counts, so an agent knows what to expect.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence that leads with the core action ('Returns the current toolkit state') and then uses a colon to list specific data elements. Every clause earns its place, and there is no fluff, repetition, or unrelated 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?
With zero parameters, strong annotations, and no output schema, the description fully covers desired usage context by enumerating the return contents: installed MCPs, connection status, connected accounts, and catalog tool counts. This is sufficient for an agent to understand what the tool will do without additional context.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool takes zero parameters, so there are no parameter semantics to explain. As per the baseline for zero-parameter tools, the description appropriately focuses entirely on the return value and behavior, making additional parameter documentation unnecessary.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb ('Returns') with a clearly defined resource ('current toolkit state') and lists the exact contents returned (installed MCPs, connection status, connected accounts, catalog tool counts). This scope distinguishes it from sibling tools like show_version, which would report version information rather than overall toolkit 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 makes the tool's purpose and output clear, so an agent can infer it is the right tool to inspect the current toolkit configuration and connections. It does not explicitly state when to prefer it over sibling tools or mention exclusions, but the clear context is sufficient given that no sibling tool claims the same function.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Servers
- Alicense-qualityCmaintenanceEnables querying SEFAZ SC DEC Caixa Postal (Brazilian state tax mailbox) from the official source via a hosted MCP server, with prepaid credits and support for any MCP client.MIT
- 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-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
- 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
Your Connectors
Sign in to create a connector for this server.