Receita Federal Simples MEI: Emissão de Guia de Parcelamento
Server Details
Receita Federal Simples MEI: Issuance de Guia de Parcelamento, official-source lookup. Platform-host
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- mcp-dir/receita_federal_simples_mei_eg-mcp
- GitHub Stars
- 0
- Server Listing
- Receita Federal Simples MEI: Emissão de Guia de Parcelamento
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.
Tools like authenticate, connect, and marketplace have overlapping purposes related to MCP platform management, while the actual domain tool (receita_federal_simples_mei_eg_consultar) is isolated. This creates confusion about which tool serves what purpose, especially for the server's intended Receita Federal domain.
Tool names mix verbs (authenticate, connect, report_bug, show_version), a noun (marketplace), and a long descriptive phrase (receita_federal_simples_mei_eg_consultar). There is no consistent pattern (e.g., verb_noun or noun_noun), making the set feel arbitrary.
With 7 tools, the count is within the reasonable range, but most tools are generic MCP admin functions rather than domain-specific operations. This inflates the number beyond what the server's stated purpose (Receita Federal MEI payment slip issuance) would require, though it's not extreme.
The domain is narrowly 'Emissão de Guia de Parcelamento', but only one tool directly addresses it. There are no supporting tools for querying status, listing existing guias, or other related operations, leaving obvious gaps in the expected functionality for this domain.
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 are sparse (readOnlyHint=false, idempotentHint=true, destructiveHint=false), so the description carries most of the behavioral burden. It adds valuable context: the browser-based flow, the permanent vs session distinction, and that no-args returns a link. This doesn't contradict the idempotency hint (authenticating is a set-once operation). It could add what happens on repeated no-arg calls or invalid-token failure, but for an auth tool the core behavior is well disclosed.
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 paragraph with every sentence earning its place: purpose, config mode, session mode, and no-arg behavior are all covered without filler. It's slightly verbose with technical parentheticals (Cursor, JWT), but the density is justified by the need to explain two distinct auth paths.
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 tool (1 optional param, no output schema), the description is nearly complete. It explains invocation for all cases (no args, with token), the permanent vs session behavior, and implies the return for the no-arg call ('to get the link'). Minor gaps: no mention of failure modes (invalid token, expired link) or what a successful token call returns. Overall adequate given the tool's low complexity.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description must compensate. It explains the lone 'token' parameter as a JWT pasted by the user for session-only login, and clarifies that omitting it triggers the link-generation path. This is sufficient semantic context for the single optional parameter, though it could more explicitly state the token's format constraints.
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 action ('log in in the browser, copy the access token') targeting the MCP server connection, with two clear delivery modes (permanent config header vs session-only token). This clearly distinguishes it from sibling tools like 'connect' and 'marketplace' by focusing on the authentication mechanism rather than generic connection or discovery.
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, actionable guidance is provided for each mode: 'Best: add it to this server's config as a header' for permanent auth, 'call with { token: "<jwt>" }' for session login, and 'with no args to get the link' for initial setup. It even explains the trade-off (permanent non-expiring vs session-only), giving the agent clear decision criteria for which invocation pattern to use.
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 and idempotentHint, and the description adds meaningful behavioral context: it reveals the response shape (authenticated, pending[], connect_url) and conditional behavior based on credential state. This goes beyond the annotations without contradicting them.
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?
Two sentences, front-loaded with the core purpose, and every clause adds information. No filler 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?
With no output schema present, the description effectively communicates the return values and the conditions that affect them. It fully covers the tool's simple behavior and edge cases (all connected vs. missing credentials), so the description is sufficient for an agent to understand and invoke it.
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 fully covers the input surface. The description appropriately focuses on output behavior rather than parameter details, which is the correct baseline for a no-parameter tool.
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-resource pair ('Returns connection status and URLs') and clearly differentiates from siblings like authenticate and toolkit_info. It also describes conditional outcomes, making the tool's 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 explains what happens in two states (all providers connected vs. credentials missing), which implies when a user might find it useful, but it does not explicitly state when to prefer this over alternatives like authenticate or toolkit_info. No exclusions or when-not-to-use guidance is provided.
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?
Beyond the annotations (readOnlyHint=false, openWorldHint=true), the description reveals critical behaviors: invoke works even when MCP is not installed and has one-off execution semantics; returns connect/checkout links for auth/payment; requires workspace owner/admin for writes; and flags installed_in_toolkit vs installed_in_workspace. This is rich, actionable transparency that annotations do not provide.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is long but densely informative, covering the core flow, edge cases (uninstalled MCPs, payment links), permission requirements, and the prompt library. It is front-loaded with the main purpose and uses every sentence to add value. While it could be split into structured points, the length is justified given the tool's complexity.
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 14 actions, 23 parameters, no output schema, and no parameter descriptions, the description provides substantial context: the search-describe-invoke workflow, install vs invoke behavior, permission requirements, and prompt operations. However, it omits details on some actions (e.g., resume, list_tools specifics), output structures, and error handling, so it falls short of fully complete for such a complex tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has 23 parameters with zero descriptions (0% coverage). The description explains high-level concepts (action values like search/describe/invoke) and some parameters implicitly (mcp_id, tool_id, arguments), but many parameters (e.g., immediate, tier_slug, prompt_vars, cancel_reason) are never explained. The description does not compensate for the lack of schema documentation, leaving the agent uncertain about parameter formats and meanings.
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 role as the MCP marketplace and prompt library, with specific actions and flow. However, it doesn't explicitly differentiate itself from sibling tools like authenticate or report_bug (which also appear as actions within this tool), so the purpose is clear but not sharply distinguished from alternatives.
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 guidance on when to use invoke vs install ('prefer invoke for a single/occasional use... use install only to make an MCP PERMANENT'), and explains the core search→describe→invoke flow. It also mentions billing via subscribe/cancel and when to request a new MCP. However, it doesn't compare this tool to sibling tools like connect or authenticate, leaving some ambiguity about when to use those instead.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
receita_federal_simples_mei_eg_consultarCRead-onlyIdempotentInspect
Receita Federal Simples MEI: Emissão de Guia de Parcelamento, 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 |
|---|---|---|---|
| cpf | Yes | ||
| cnpj | Yes | ||
| mes_ano | No | ||
| codigo_acesso | Yes |
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. Description adds useful context: no platform credentials needed, prepaid credit payment, non-confidential data, LGPD responsibilities. This goes beyond annotations, so a 4 is warranted.
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 several clauses, mixing business details (payment, LGPD) with functional intent. It's not overly long but could be more structured. It front-loads the purpose but then goes into payment and legalities, which might not be the most relevant for invocation.
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 does not explain what the tool returns, how parameters are used, or any pagination/error behavior. It mentions it's a consultation, but not what the output looks like. Given no output schema substrates, this is incomplete. Also, parameters are not explained.
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% and the description does not explain any of the four parameters (cnpj, cpf, mes_ano, codigo_acesso) or their purpose. The description only says it consults official sources but doesn't clarify what each parameter is for, leaving the agent to guess. The description adds no meaning beyond the bare names.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly identifies the tool as a query (consulta) to official Receita Federal sources for Simples MEI, and mentions emitting a parcelamento guide. However, it does not explicitly distinguish it from specific sibling tools (though the sibling list is generic). The purpose is specific but could be sharper about the exact output.
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?
No explicit guidance on when to use this tool vs alternatives, or what situations it is appropriate for. It mentions payment and data privacy, but doesn't provide selection criteria or exclusions. The tool appears unique among siblings, but still no usage context.
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 already provide readOnlyHint=false, destructiveHint=false, and idempotentHint=true. The description adds the instruction to include conversation data for reproduction but does not disclose additional behavioral traits such as side effects or rate limits. 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 two sentences: the first states the purpose, the second gives a key usage instruction. Every word 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?
For a simple tool with no output schema, the description covers purpose and primary usage. However, it omits explanation of the 'context' parameter and does not describe what happens after submission, leaving slight gaps despite the tool's simplicity.
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 explains the 'conversation' parameter (include recent messages) and implies 'message' holds the report text, but the 'context' parameter is not mentioned. Partial compensation for the lack of schema documentation.
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 'Report' with clear resources ('bug, missing feature, or feedback'). It distinguishes itself from siblings like authenticate and show_version by stating its unique 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?
Provides clear context for when to use the tool (reporting issues or feedback) and instructs to include the conversation array for reproduction. However, it does not explicitly name alternative tools or exclusion criteria, though siblings are unrelated.
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 the operation as read-only and idempotent, which the description aligns with by stating 'show.' While the description doesn't add extra details like output format, the behavior is predictable, and the annotations cover safety. It adds no contradictions and meets the baseline for a non-destructive operation.
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?
A single, clear sentence that conveys all necessary information without fluff. Every word earns its place, and the structure is perfectly minimal.
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 no parameters and a simple output, this description is complete. The lack of an output schema is not an issue because the purpose is straightforward, and the annotations cover the behavioral context. No additional information is needed.
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 zero parameters and 100% schema coverage, there's no room for confusion. The baseline of 4 applies here since there are no parameters to document, and the description correctly indicates the tool takes no input.
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 ('show') and clearly identifies the resource ('current MCP platform and adapter versions'). It effectively distinguishes itself from siblings by focusing solely on version information, leaving no ambiguity about its function.
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 the tool is for checking versions but doesn't explicitly state when to use it versus alternatives or provide context about when it's appropriate. However, for a simple version lookup tool, the guidance is adequate, as no exclusions or prerequisite conditions are needed.
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, so the safety profile is covered. The description adds meaningful context about exactly what state is returned (installed MCPs, statuses, accounts, tool counts), going beyond the annotations without contradicting them.
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 purpose and then lists the returned details. Every clause adds information, with no wasted words.
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 introspection tool with strong annotations, the description fully covers what the agent needs to know: what the tool does and what information it returns. No output schema exists, but the enumeration of returned fields compensates adequately.
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 the schema coverage is 100% (trivially), so there is no parameter burden on the description. The description focuses on return content instead, which is appropriate for a no-argument info tool.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb ('Returns') and names a concrete resource ('current toolkit state'), then enumerates its contents: installed MCPs, connection status, connected accounts, and catalog tool counts. This clearly distinguishes it from siblings like show_version and report_bug.
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 no guidance on when to use this tool versus alternatives. It does not mention that show_version might be used for version info, or that marketplace connects to MCPs, so an agent has no explicit when/when-not guidance.
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 consulting the Receita Federal Simei MEI for issuing installment guides, using an official source. Read-only MCP server with a single tool for querying Brazilian MEI payment guide information.MIT
- Alicense-qualityCmaintenanceMCP server for consulting and issuing DAS (payment slips) for MEI (Individual Microentrepreneur) from the official Brazilian Federal Revenue system. Provides a read-only tool via hosted API without credentials.1MIT
- Alicense-qualityCmaintenanceRead-only MCP server for querying Brazilian federal SIMEI annual declarations from the official source, hosted with pay-per-use credits and no credentials.MIT
- Alicense-qualityCmaintenancePermite consultar dados oficiais da Receita Federal sobre DASN SIMEI por meio de uma ferramenta somente leitura, hospedada sem credenciais e com pagamento por consulta.MIT
Your Connectors
Sign in to create a connector for this server.