Tribunal TSE: Doadores e Fornecedores
Server Details
Tribunal TSE: Doadores e Fornecedores, official-source lookup. Platform-hosted, pay per query with p
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- mcp-dir/tribunal_tse_doador_fornecedor-mcp
- GitHub Stars
- 0
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
Full call logging
Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.
Tool access control
Enable or disable individual tools per connector, so you decide what your agents can and cannot do.
Managed credentials
Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.
Usage analytics
See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.
Tool Definition Quality
Average 4.2/5 across 7 of 7 tools scored. Lowest: 3.1/5.
Most tools have clear, distinct purposes: authenticate handles login, connect checks status, marketplace manages MCP discovery/execution, report_bug sends feedback, show_version displays versions, toolkit_info shows installed MCPs, and the TSE tool performs a specific query. There is slight overlap between authenticate and connect, but their descriptions adequately differentiate them.
Tool names follow inconsistent patterns: some are single verbs (authenticate, connect), some verb-noun (report_bug, show_version), some nouns (marketplace, toolkit_info), and the domain tool is a long underscore-separated phrase (tribunal_tse_doador_fornecedor_consultar). This lack of a uniform convention makes the set feel ad hoc.
Seven tools is a reasonable number for a platform server that offers both management utilities and a specific data query. The count is not excessive, and each tool appears justified, though the breadth of functionality in marketplace makes it dense.
The server's stated purpose is 'Tribunal TSE: Doadores e Fornecedores', but only one tool is domain-specific (a consulta). Generic platform tools dominate, leaving the TSE domain with just a single query operation and no other lifecycle or data management features. The platform tools themselves are fairly comprehensive, but the overall surface is disjointed and incomplete for the apparent TSE focus.
Available Tools
7 toolsauthenticateAIdempotentInspect
MCP.AI for IDE agents (Cursor, etc.): log in in the browser, copy the access token. Best: add it to this server's config as a header Authorization: Bearer <token> for a permanent, non-expiring connection. Or paste it here for a session-only login: call with { token: "" } after the user pastes, or with no args to get the link.
| Name | Required | Description | Default |
|---|---|---|---|
| token | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate idempotence (idempotentHint: true) and non-destructiveness (destructiveHint: false), while the description adds behavioral context about persistence: it explains the difference between a permanent header-based connection and a session-only login, and mentions that calling with no args returns a link. This goes beyond the annotations and clarifies the tool's side effects and usage 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?
The description is a single sentence but packs significant information: context, best practice, alternative, and parameter usage. It is front-loaded with the purpose and remains under 100 words. While slightly dense, it is concise and well-structured.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the simple tool with one optional parameter and no output schema, the description covers the primary workflows (header config vs. session token vs. link retrieval). It doesn't describe edge cases like error handling or token expiration, but these are less critical for an authentication helper. The description is complete enough for an agent to use it 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 input schema has 0% description coverage (no param descriptions), but the tool description compensates by explaining the 'token' parameter: it should be a JWT string and is used when pasted for session-based login. It also implies the parameter is optional since calling with no args is an alternative. This adds meaningful semantic context for the single parameter.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: authenticate the user by logging in and obtaining an access token. It explicitly mentions 'log in in the browser, copy the access token' and provides examples of usage, distinguishing it from siblings like 'connect' or 'toolkit_info' via its specific authentication focus.
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 usage guidance: it recommends adding the token as a header for a permanent connection versus pasting it for a session-only login, and tells the user to call with no args to get the link. This provides clear when-to-use and context, though it doesn't explicitly mention alternatives to this tool.
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?
Beyond the readOnlyHint and idempotentHint annotations, the description discloses meaningful response behavior: authenticated:true, empty pending[], and connect_url/per-install URLs depending on credential state. This is strong behavioral detail for a zero-parameter read-only tool, though it does not cover partial-connection states.
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, no filler, and information is front-loaded: the first sentence states the purpose, the second explains conditional outputs. Every word contributes to understanding.
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 return shape and the key condition branches (all connected vs. missing credentials), which is sufficient for a simple status tool with no input schema and no output schema. It leaves partial-connection behavior unspecified, preventing a perfect score.
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 description coverage, the schema already exhaustively documents the input surface. The description adds no parameter-specific meaning, but that is unnecessary; the baseline of 4 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb ('Returns') and resource ('connection status and URLs'), making the tool's core function unambiguous. It also describes expected response states, clearly distinguishing this status-checking tool from the sibling 'authenticate' tool, which likely performs authentication actions.
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 clear conditional contexts: use this tool to check all-providers-connected status or to retrieve connect URLs when credentials are missing. It does not explicitly name alternatives or exclusion cases, but the conditions imply the appropriate usage window.
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 minimal annotations (readOnlyHint=false, openWorldHint=true), the description reveals side effects: invoke works even if the MCP is not installed, runs one-off, doesn't bloat the toolkit, and may return connect/checkout links requiring user action and retry. It also notes permission requirements for install/uninstall/subscribe/cancel. No contradictions 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 long but dense; it front-loads the purpose and then details the core flow, permission rules, and prompts library without fluff. While it could be organized more neatly (e.g., separate paragraphs per concern), every sentence adds substantive information.
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 complexity (23 params, no output schema), the description covers the key flows (search/describe/invoke), authorization, billing redirects, permissions, and the prompt library feature. It lacks some details on actions like resume and the exact interface for report_bug/request_mcp, but overall it is sufficiently complete for a high-level agent to understand and use the tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 0%, so the description must compensate. It explains the action parameter and the core flow, mentioning tool_id/arguments for invoke, and touches on prompt-related actions. However, many parameters (limit, query, mcp_id, conversation, prompt_vars, etc.) are not individually described, leaving gaps in meaning despite the overall flow being 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 description clearly identifies the tool as the mcp.ai marketplace, with a specific verb ('the way to run them') and scoped resource (in-platform catalog). It distinguishes from siblings like authenticate/connect by framing marketplace as the discovery/execution layer, and enumerates distinct action verbs (search, describe, invoke, install, etc.).
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 when-to-use guidance is abundant: 'prefer invoke for a single/occasional use' vs 'use install only to make an MCP PERMANENT', and the flow 'search → describe → invoke' is spelled out. It also gives exclusion criteria, e.g., 'list_tools lists what is callable right now', and states write operations require workspace owner/admin.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
report_bugBIdempotentInspect
Report a bug, missing feature, or send feedback. Include the conversation array with recent messages for reproduction.
| Name | Required | Description | Default |
|---|---|---|---|
| context | No | ||
| message | Yes | ||
| conversation | No | [] |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations indicate readOnlyHint=false, destructiveHint=false, and idempotentHint=true. The description does not contradict these, but it also doesn't add much beyond what annotations provide. It mentions including conversation for reproduction, which is a behavioral detail, but doesn't disclose any side effects, auth requirements, or rate limits. Since annotations cover some safety profile, 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 concise, two sentences, and front-loaded with the purpose. It includes a key instruction about including the conversation array. No wasted words, but it could be slightly more structured with parameter details.
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 has 3 parameters, no output schema, and no schema descriptions, the description is insufficient. It doesn't explain the 'context' parameter, the format of 'conversation' (though it says array, the schema type is string), or what happens after reporting. For a feedback tool, it might be acceptable, but the lack of parameter semantics and behavioral details makes it incomplete.
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. The description mentions 'conversation array' but the schema has a 'conversation' parameter as a string with default '[]'. It doesn't explain the 'context' parameter at all, and 'message' is obvious. The description adds minimal value beyond the schema, leaving 'context' and the format of 'conversation' unclear.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: 'Report a bug, missing feature, or send feedback.' It uses specific verbs and resources, and it distinguishes from siblings by focusing on reporting issues rather than authentication, connection, or marketplace functions. However, it doesn't explicitly differentiate from potential similar tools, but given the sibling list, it's clear enough.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies when to use it (when reporting bugs, missing features, or feedback) but does not provide explicit guidance on when not to use it or alternatives. It mentions including the conversation array for reproduction, which gives some context, but lacks exclusions or comparison to other tools.
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, idempotentHint, and destructiveHint false, establishing the safety profile. The description adds a 'current' snapshot qualifier, but no further behavioral context beyond what annotations 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 a single concise sentence of eight words, front-loaded with the verb and object, containing no filler or redundant 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?
For a zero-parameter, read-only, idempotent version-checking tool with annotations covering safety, the description fully communicates the tool's purpose. No output schema is present, but the expected return (version strings) is naturally implied.
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, the schema is complete, and the baseline per the rubric is 4. The description does not need to explain parameter syntax or semantics, as there are none.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Description uses a specific verb 'Show' and resource 'current MCP platform and adapter versions', making its function unambiguous. It clearly distinguishes from sibling tools like marketplace or report_bug, which serve 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?
No explicit when-to-use or alternative guidance is provided, but the tool's purpose is self-evident for retrieving version information. Usage context is implied by the tool's name and description.
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 value by specifying exactly what state is returned, which is especially important because no output schema exists.
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, well-structured sentence front-loads the purpose and packs in the key output categories without wasted words. Every clause adds meaningful information.
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 low complexity, zero parameters, strong annotations, and absence of an output schema, the description fully conveys what the agent can expect. It enumerates all major result components: installed MCPs, statuses, accounts, and tool counts.
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 accepts zero parameters and the schema is empty, so there is no parameter semantic burden. Per the rubric, zero-parameter tools receive a baseline of 4.
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 the exact resource ('current toolkit state') with enumerated contents: installed MCPs, connection status, connected accounts, and catalog tool counts. This clearly differentiates it from action-oriented siblings like connect and authenticate.
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 informational, read-only nature clear, implying it is for inspecting state rather than performing actions. It does not explicitly name alternatives or exclusions, but the context of sibling tools (connect, authenticate, marketplace) makes the appropriate usage obvious.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
tribunal_tse_doador_fornecedor_consultarARead-onlyIdempotentInspect
Tribunal TSE: Doadores e Fornecedores, 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 | ||
| cpf | No | ||
| cnpj | No | ||
| nome | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, idempotentHint, and non-destructive. The description adds valuable context: data is non-confidential (não é dado sigiloso), the client is the data controller under LGPD, and it's a paid per-query service. There is 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 block of three sentences, front-loaded with purpose. It is concise and includes legal and payment details, but some of this context might be better placed in platform-level documentation. Still, it avoids redundancy and is easy to scan.
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 tool's purpose, legal obligations, and payment model, but lacks parameter semantics and expected output. With no output schema, the agent is left without clarity on what data is returned. It is sufficient for basic usage but not fully complete for a complex consultation tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, and the description does not explain any parameter. Although parameter names (ano, cpf, cnpj, nome) are self-explanatory, the description fails to add meaning like formats, required combinations, or how they interact. With low coverage, this is a significant gap.
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 'Tribunal TSE: Doadores e Fornecedores, consulta em fonte oficial' – a specific verb (consulta) and resource (Doadores e Fornecedores from TSE). This distinguishes it from sibling tools like 'authenticate' and 'marketplace', which serve entirely 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 mentions 'consulta em fonte oficial' and that it's 'a mesma disponível ao cidadão', implying legitimate queries. It also notes payment and LGPD compliance, but does not explicitly state when to use this tool over alternatives. Since siblings are unrelated, the lack of explicit exclusions is acceptable.
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
- FlicenseAqualityDmaintenanceEnables querying Brazilian electoral data through TSE's official API. Supports candidate searches, election information, and campaign finance records for municipalities and states.72
- Alicense-qualityCmaintenanceEnables querying a person's electoral situation in Brazil (TSE) using name, birth date, CPF and voter ID. Allows checking if the voter registration is regular or irregular.MIT
- Alicense-qualityCmaintenanceEnables querying the Brazilian Superior Electoral Court (TSE) for electoral crimes certificates of individuals using personal data like name, CPF, voter ID, and birth date.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