Receita Federal: Simples (Listagem de Períodos para Emissão de DAS)
Server Details
Receita Federal: Simples (Listagem de Períodos para Issuance de DAS), official-source lookup. Platfo
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- mcp-dir/receita_federal_listar_das-mcp
- GitHub Stars
- 0
- Server Listing
- Receita Federal: Simples (Listagem de Períodos para Emissão de DAS)
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.
Each tool has a clearly distinct purpose: authentication, connection status, marketplace operations, the actual DAS consultation, bug reporting, version display, and toolkit info. There is no overlap or ambiguity between them.
Tool names mix camelCase (authenticate, connect, marketplace, report_bug, show_version, toolkit_info) with a lengthy snake_case Portuguese name (receita_federal_listar_das_consultar). There is no consistent verb-noun pattern or language style across the set.
The count of 7 tools is within the typical well-scoped range, but the server is titled around Receita Federal DAS yet only one tool is domain-specific. The other six are generic platform utilities, which dilutes the server's specific purpose but does not make the count inappropriate.
For the stated purpose (listing periods for DAS emission), there is exactly one tool that covers it, which is arguably complete. However, the server also includes unrelated platform tools, and there are no additional operations like generating or downloading DAS, so coverage feels thin for the broader tax domain implied by the server name.
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?
The description adds behavioral context beyond annotations: it discloses that calling with no args returns a login link, and that the token enables session vs. permanent authentication. It aligns with annotations (idempotentHint=true, destructiveHint=false) and doesn't contradict them. However, it doesn't mention error handling or security implications, which would be useful but not required given annotation coverage.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a bit verbose but well-structured: it front-loads the tool's audience, then presents two usage paths clearly. Every sentence contributes practical value, and the semicolons and parentheses keep it organized. It's longer than necessary but not bloated.
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 one optional parameter and no output schema, the description is quite complete: covers authentication flow, both usage modes, and parameter semantics. It could mention what happens after successful authentication (e.g., session state), but this is implied. Overall, it provides sufficient context for an agent to invoke 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 coverage is 0%, but the description fully compensates: it explains the token parameter is a JWT from the browser and that it's optional (omitting it yields a login link). This adds meaning far beyond the bare schema, making the parameter's purpose and usage clear.
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: to authenticate a user via browser login and token exchange. It specifies the action (log in, obtain token, authenticate) and the resource (the MCP server). It also distinguishes itself implicitly from siblings like 'connect' and 'marketplace' by focusing on authentication credentials.
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 explicitly explains when and how to use the tool: two distinct methods (permanent config via Authorization header or session-only via token parameter), with clear instructions for calling with or without the token argument. It also provides context about when one method is better than the other, offering practical guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
connectARead-onlyIdempotentInspect
Returns connection status and URLs. When all providers are connected, returns authenticated:true and empty pending[]. When credentials are missing, returns connect_url for the toolkit and per-install URLs.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safe read-only nature is covered. The description adds value by explaining the response format (authenticated flag, pending array, connect_url) and the distinction between toolkit-level and per-install URLs, which goes beyond the annotations. However, it doesn't disclose behavior like potential rate limiting or complexity, but given the safe and idempotent hints, a 3 is appropriate.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences long, front-loaded with the primary purpose, and provides specific details about the output in different scenarios. It is efficient, with no wasted words, though it could be slightly more structured with bullet points, but for a short description it is appropriately 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?
Given the tool's simplicity (no parameters, no output schema) and the annotations clearly defining its safe read-only nature, the description provides sufficient context for an agent to understand the tool's function and expected output. It could mention that the output is a JSON object, but that is implied. It doesn't need to explain return values deeply since there is no output schema, but the description covers the main scenarios.
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)Skip this. The parameter count is 0; the description doesn't need to explain parameters. The schema coverage is 100% trivially, so the description adds value by clarifying the output semantics rather than parameters. According to the rubric, 0 parameters means baseline 4, and the description effectively explains what the tool returns, which supports that score.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool returns connection status and URLs, including specifics about the 'authenticated:true' state and missing credentials behavior. Though it doesn't explicitly differentiate from siblings, the purpose is unambiguous and actionable, and the sibling 'authenticate' implies this tool is for status checking rather than initiating auth.
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 a usage context: to check if all providers are connected and obtain connection URLs when credentials are missing. It does not explicitly state when to avoid using this tool or mention alternatives, but the context is clear enough for an agent to decide when a status check is needed.
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 behavioral context beyond the annotations. It discloses that invoke works even when the MCP is not installed (one-off, 'runs the tool pontualmente'), that it returns a connect link if credentials are needed and a checkout/top-up link if paid and the wallet is empty (with a retry instruction), and that writes require workspace owner/admin. No contradiction with annotations found; readOnlyHint=false aligns with the disclosed write operations.
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 dense single-paragraph wall of text containing valuable information with a front-loaded purpose statement. It is not 'concise' in the structural sense — there is no use of bullets, sections, or lists to organize the 14 actions and their relationships. However, most sentences do earn their place given the tool's complexity, so it avoids bloat while lacking structural clarity.
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 23 parameters, 14 action enum values, no output schema, and sparse annotations, the description covers the high-level flow (search/describe/invoke/install, prompts, billing, reporting) well. But it leaves significant gaps: most parameter specifics (prompt_*, cancel_*, request_* fields) are only implied, not defined, and the description does not clarify what the invoke response shape looks like or how pagination via 'limit' works.
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%, placing the full burden on the description. It explains the action enum values and the roles of mcp_id and tool_id within the search→describe→invoke flow, but leaves roughly 17 parameters undocumented (prompt_body, prompt_slug, prompt_vars, cancel_reason, cancel_comment, report_context, request_details, conversation, prompt_targets, prompt_category, etc.). Only brief mentions of the prompt library (search_prompts/get_prompt/publish_prompt) touch a few of these, which is insufficient compensation for zero schema coverage.
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 purpose: "The official mcp.ai marketplace — the in-platform catalog of every MCP/tool, AND the way to run them." This is a specific resource (catalog/execution platform) with clear verb+resource framing. It naturally distinguishes from siblings like authenticate, connect, and toolkit_info, though the tool bundles 14 distinct actions, making the purpose somewhat diffuse and multi-faceted.
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?
Usage guidance is explicit and thorough. It states the core flow (search discovers MCPs → describe returns profile → invoke runs the tool), and gives clear when-to vs when-not: "prefer invoke for a single/occasional use" vs "Use install only to make an MCP PERMANENT in the active toolkit." It also names alternatives (list_tools, subscribe/cancel, report_bug, request_mcp) and gives an exclusion ('without adding the MCP to the toolkit').
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
receita_federal_listar_das_consultarARead-onlyIdempotentInspect
Receita Federal: Simples (Listagem de Períodos para Emissão de DAS), 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 |
|---|---|---|---|
| ano | Yes | ||
| cnpj | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already establish read-only, idempotent, and non-destructive behavior, and the description adds non-redundant detail: no credentials required, prepaid billing model, data is openly available to citizens, and LGPD controller responsibility falls on the customer. This goes beyond the structured 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 compact and front-loaded with the core functionality in the first clause, followed by practical billing, access, and legal context. There is minor redundancy around official sources and citizen-accessible data, but the overall size is acceptable and informative.
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 2-parameter read-only lookup, the description is mostly sufficient: it explains the data domain, official source, billing, and legal responsibility. However, it leaves undefined what the returned periods look like, any input format expectations, and possible error or empty-result behavior, which matters because no output schema exists.
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 0% description coverage, and names like 'ano' and 'cnpj' are only minimally descriptive. The description mentions DAS period listing but does not explain the exact role of each parameter, expected formats, or how the year is used, so it fails to compensate for the absent schema descriptions.
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 Receita Federal Simples DAS-period listing feature and states it is a query against an official source. It uses a specific resource ('Listagem de Períodos para Emissão de DAS') and a clear consult operation, easily distinguishing it from the unrelated sibling tools such as authenticate and marketplace.
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 practical usage context: the tool is hosted on the platform, requires no platform credentials, charges prepaid credits per query, and targets official Brazilian public data available to citizens. It does not explicitly discuss exclusions or alternatives, but enough guidance is present to understand when this tool is applicable.
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 idempotentHint=true and destructiveHint=false, so safety is covered. The description adds that the conversation array is needed for reproduction, which is useful behavioral context. However, it does not explain what happens after calling (e.g., whether it creates a ticket or sends data), so gaps remain.
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 concise sentences, front-loaded with purpose and a practical hint. 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?
The description covers the core purpose and one param's role, but lacks details on the full parameter set (context, message format) and post-call effects. Given no output schema and low parameter documentation, it is minimally viable but not 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 description coverage is 0%, so the description must compensate. It only explicitly explains 'conversation' (as an array for reproduction), but does not clarify the format (JSON string) or the meaning of 'context' and 'message'. This is insufficient given zero schema descriptions.
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 verb and resource: 'Report a bug, missing feature, or send feedback.' It distinguishes from siblings (authenticate, connect, etc.) which serve different purposes. The purpose is unambiguous and specific.
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 names the scenarios (bug, missing feature, feedback) and instructs to include the conversation array for reproduction. It does not explicitly exclude alternatives, but the sibling tools are clearly unrelated. The guidance is adequate for selecting this tool.
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. The description adds useful context by specifying exactly what is returned (platform and adapter versions), which is valuable given there is no output schema.
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 conveys the full purpose without any filler or redundant information. It is front-loaded and every word earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a zero-parameter, read-only version query tool with rich annotations, the description is complete. It explains what the tool returns and requires no additional behavioral or parameter 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 has zero parameters, so parameter semantics are not applicable. Per the baseline for zero-parameter tools, a score of 4 is appropriate since there is no parameter ambiguity to resolve.
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 is unambiguous and distinct from sibling tools like authenticate or 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 implies use when version information is needed, but it does not explicitly state when to prefer this tool over alternatives such as toolkit_info. For a simple zero-parameter version tool, the implied usage is sufficient but not fully explicit.
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, idempotentHint, and destructiveHint, covering safety. The description adds meaningful behavioral context by specifying the exact return contents (installed MCPs, connection status, accounts, tool counts), going beyond the generic annotation hints. This is useful for an agent deciding if this tool provides the needed information.
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 front-loads the core purpose ('Returns the current toolkit state') and then lists specific data points. Every phrase earns its place with no filler or repetition of the tool name.
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, the description fully specifies what the tool returns: installed MCPs, connection status, accounts, and tool counts. There is no output schema, so this descriptive list serves as the complete contract. No additional caveats or behavior seem necessary for an agent to invoke this 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?
The tool has zero parameters, so the input schema is trivially complete (100% coverage). The description correctly makes no mention of parameters because none exist. Per the rubric, a baseline of 4 applies for zero-parameter tools, and no extra semantic info is needed.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's function with a specific verb ('Returns') and resource ('current toolkit state'), then enumerates exactly what it reports: installed MCPs, connection status, connected accounts, and count of catalog tools. This distinguishes it clearly 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?
The description makes it obvious this is a read-only status/info tool, which implies when one would use it (e.g., before connecting or troubleshooting). However, there is no explicit statement about when to use it versus alternatives, no exclusions, or 'use X instead' 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-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
- Alicense-qualityCmaintenanceQuery Brazilian Federal Revenue (Receita Federal) tax situation data from official sources via a single read-only tool, hosted and billed per use.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
Your Connectors
Sign in to create a connector for this server.