Sivisa: SP
Server Details
Sivisa: SP, official-source lookup. Platform-hosted, pay per query with prepaid credit.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- mcp-dir/sivisa_sp-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 3.9/5 across 7 of 7 tools scored. Lowest: 2.7/5.
Marketplace is a catch-all that contains many sub-operations, including report_bug, billing, install, and prompt-library actions, so it blurs boundaries with several standalone tools. report_bug duplicates a sub-operation already present inside marketplace, and connect/toolkit/marketplace all partly overlap on connection and installed-tool status.
Most names are readable lowercase snake_case, so there is no heavy style mixing. However, the pattern is inconsistent: authenticate and connect are bare verbs, marketplace and toolkit_info are nouns, and sivisa_sp_consultar follows a different domain-prefix-plus-verb style.
Seven tools is a reasonable count for the server's apparent scope and stays within the comfortable range. The count is slightly misleading because marketplace bundles many distinct operations into a single tool, but the overall number is not bloated or too thin.
The core platform lifecycle is well covered: authentication, connectivity, marketplace discovery/invocation, billing, bug reporting, and toolkit state all exist. The only notable gap is that the Sivisa domain is reduced to one generic consult tool, with no obvious way to discover queryable data types or manage/refine specific consultations.
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 discloses behavioral traits beyond annotations: it explains that calling with no args returns a link, and that passing a token enables session-only login, while config-based tokens give non-expiring access. Since annotations only provide idempotentHint and non-destructive flags, this context adds value about mode-dependent behavior.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a bit long but every sentence contributes useful information. It is front-loaded with the main purpose, then gives two usage scenarios in a structured way. It avoids redundancy and is well-organized, though it could be slightly trimmed without losing 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?
Given the tool has no output schema and involves authentication, the description adequately covers the workflow: getting the token, using it in two modes, and even suggests a config alternative. It doesn't describe return values, but for an auth tool that's acceptable. The guidance is complete enough for an agent to decide when and how to 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?
Despite the schema having no description for 'token' and 0% coverage, the description explicitly defines it: 'call with { token: "<jwt>" } after the user pastes' and clarifies that it's a JWT. It also explains that the parameter is optional (call with no args to get the link). This fully compensates for the schema's lack of semantics.
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: 'log in in the browser, copy the access token' and how to use it for authentication. It distinguishes itself from sibling tools like 'connect' and 'marketplace' by focusing on authentication, though it doesn't explicitly name alternatives. The verb 'authenticate' plus the explanation makes the purpose clear.
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 provides explicit usage guidance: it says to call with a token for session-only login or with no args to get the link, and recommends adding the token as a header for permanent access. It doesn't mention when not to use the tool or compare directly to siblings, but the context for when to use it is clear.
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 and idempotentHint=true, covering the safety profile. The description adds valuable context beyond this by explaining the conditional response format (authenticated:true vs. connect_url), which is not evident from annotations alone. This enhances the agent's understanding of what the tool returns.
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 concise sentences, front-loaded with the main purpose, followed by conditional specifics. Every sentence adds value with no redundancy or filler, making it efficiently structured for agent comprehension.
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 (no parameters, no output schema), the description adequately covers both primary states (all connected vs. missing credentials) and the nature of returned URLs. It provides sufficient context for an agent to understand expected behavior without additional documentation.
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 there is nothing to describe. Per the rule for 0-param tools, a baseline of 4 is appropriate since the schema is trivially complete and the description needs no additional parameter explanation.
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: 'Returns connection status and URLs.' It specifies distinct behaviors for connected vs. missing credentials, and the resource (connection status) is well-defined. It also implicitly distinguishes itself from sibling 'authenticate' by focusing on status rather than initiating authentication.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage for checking connection status, but it does not explicitly state when to use this tool over alternatives like 'authenticate' or other siblings. There is no mention of when not to use it or any exclusions, leaving the agent to infer context from the tool's purpose alone.
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 discloses key behavioral aspects beyond the annotations: invoke works even if MCP not installed, returns connect/checkout links, and writes require owner/admin. It also clarifies that install makes MCPs permanent in the toolkit, and describes the prompt library's behavior. This is far beyond the minimal annotation hints (openWorldHint=true, readOnlyHint=false).
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 run-on sentences and many semicolons, making it hard to scan. While informative, it could be structured with bullet points or separated into logical sections (core flow, actions, permissions, prompt library). The lack of formatting hurts usability for an AI agent trying to quickly extract key 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 complexity (23 parameters, 14 actions) and no output schema, the description does a decent job covering core flows (search→describe→invoke) and important behaviors (connect links, checkout, permissions). However, it omits details on return formats, error handling, and some parameters/actions (e.g., resume, report_bug specifics). It is complete enough for basic usage but not exhaustive.
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 core parameters like action, query, mcp_id, tool_id, and prompt-related fields. However, many parameters (e.g., arguments, conversation, tier_slug, cancel_reason) are not mentioned or exemplified, leaving gaps for an agent to infer their usage. The description covers the most important aspects but is not exhaustive.
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 official mcp.ai marketplace, covering discovery, execution, and management of MCPs and tools. It distinguishes itself from siblings by explaining its meta-functionality (search/describe/invoke/install) and its unique role as the catalog and runtime for the entire platform.
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 extensive guidance on when to use each action (search, describe, invoke, install, list_tools, subscribe, cancel, report_bug, request_mcp) and explicitly contrasts invoke vs install (prefer invoke for single/occasional use, install for permanent). It also states permission requirements for writes and how to handle connect/checkout links.
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 declare idempotentHint: true and readOnlyHint: false, so the description doesn't need to restate safety. It adds useful guidance about including the conversation array for reproduction, which helps the agent provide complete information. However, it doesn't disclose any side effects (e.g., where the report goes) or response behavior, so beyond the annotation-provided context, the added value is limited.
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 core purpose, the second provides a specific usage hint. It is front-loaded and every sentence carries meaningful information with zero 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?
Given a 3-parameter schema with no output schema and minimal annotations, the description is too sparse. It fails to explain the content format for the required 'message', the purpose of 'context', or any expected response. It also doesn't mention whether this tool sends data externally or if there are limitations. For a tool with multiple parameters, this is inadequate.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
With 0% schema description coverage, the description must explain all parameters, but it only mentions the conversation array. The required 'message' parameter is not described (what should it contain?), and 'context' is completely ignored. The description fails to compensate for the schema's lack of field documentation, leaving the agent guessing about the meaning of two of three parameters.
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.' This is a specific verb+resource combination that directly indicates the tool's function. It distinguishes itself from siblings like authenticate, connect, and marketplace, which cover different domains.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implicitly provides usage context by defining the three scenarios (bug, missing feature, feedback). It does not explicitly state when not to use it or name alternatives, but given the sibling list, no other tool is suitable for reporting issues, so the guidance is clear enough. A minor deduction for lack of explicit exclusions.
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, covering the safety profile. The description adds value by specifying that both platform and adapter versions are returned, but does not describe any additional behavioral details like output format or potential empty responses.
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, front-loaded sentence that is clear and free of unnecessary detail. Every word contributes to explaining the tool's purpose, making it highly effective.
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 read-only version lookup with no parameters and no output schema, the description fully covers the necessary context. Annotations provide the safety profile, and the description covers the exact scope of the version information returned. No additional explanation 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?
The tool has zero parameters and 100% schema coverage trivially, so there are no parameter semantics to explain. The description appropriately focuses on what the tool returns rather than inputs.
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 a clear resource ('current MCP platform and adapter versions'), which unambiguously states what the tool does. This distinguishes it from the sibling tools like authenticate or toolkit_info by focusing specifically on version information.
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 usage is implied: when you need to know the current MCP or adapter version, this is the tool to call. However, the description does not explicitly state when to use this over alternatives, nor does it provide any when-not-to-use guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
sivisa_sp_consultarCRead-onlyIdempotentInspect
Sivisa: SP, 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 | No | ||
| cnpj | No | ||
| municipio | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate readOnly, idempotent, and non-destructive. The description adds that it requires prepaid credit, does not use platform credentials, and handles non-confidential data with LGPD compliance. This adds some context but does not clarify return values or side effects beyond what annotations imply.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is moderately concise but includes legal and billing details that are not directly actionable for an agent. It front-loads the main purpose but then digresses into contractual info, making it less focused than ideal.
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 and sparse parameter info, the description should explain what the tool returns and how to pass inputs. It does neither. The legal/commercial context is present but does not compensate for the lack of technical guidance, leaving the tool underspecified for an agent.
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 the meaning or format of 'cpf', 'cnpj', or 'municipio'. Since the schema only lists types, the description fails to clarify which parameter is needed for what query, leaving the agent without essential input semantics.
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 it queries information from official Brazilian sources ('consulta em fonte oficial', 'Consulta informação de fontes e órgãos oficiais brasileiros'), which is a specific verb+resource. It distinguishes from siblings like authenticate and show_version, but does not specify what exact information (e.g., CPF/CNPJ lookups) it provides, leaving some ambiguity.
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 guidance is given on when to use this tool versus alternatives, nor any prerequisites or exclusions. The description focuses on legal/payment aspects rather than usage context, so an agent has no criteria for selecting it over other tools.
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, destructiveHint=false. The description adds no contradictions and provides complementary context about what is returned (installed MCPs, connection status, accounts, catalog tool counts). It appropriately relies on annotations for safety, adding value about output scope.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, concise sentence that efficiently lists the key elements of the toolkit state. Every phrase adds value: installed MCPs, connection status, accounts, and catalog tool counts. No redundancy or fluff.
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 parameterless read-only info tool with robust annotations, the description fully covers what the agent needs to know: what state is returned and its scope. No output schema is present, but the description clearly enumerates the return content, making the tool well-specified.
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, and schema coverage is 100% (empty schema). The description fully explains what the tool returns, compensating for the absence of parameters. This is a baseline 4 for parameterless tools that clearly describe their functionality.
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 what the tool does: returns the current toolkit state, listing installed MCPs, connection status, accounts, and catalog tool counts. It is specific and distinguishes itself from sibling tools like authenticate or connect, which handle actions rather than state inspection.
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 this tool (to check toolkit state and connections) but provides no explicit guidance on when not to use it or alternatives. Given siblings like show_version focus on version info, the context is clear enough for basic use, but exclusions are not stated.
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
- AlicenseNot gradedqualityCmaintenanceEnables querying SINTEGRA SP (São Paulo state tax registration) data from official sources via a single read-only tool, hosted as an MCP server with pay-per-use credits.MIT
- AlicenseNot gradedqualityCmaintenanceProvides query access to official SINTEGRA SE data through a single read-only MCP tool, with pay-per-use credits and no platform credentials required.MIT
- AlicenseNot gradedqualityCmaintenanceEnables querying official São Paulo state electronic invoices (NFE) data from SEFAZ SP via a read-only MCP server, using prepaid credits and no platform credentials.MIT
- AlicenseNot gradedqualityCmaintenanceEnables querying SEFAZ's centralized taxpayer registration (CCC) from the official source via a read-only tool. Pay-per-use with prepaid credits.MIT