DETRAN MG: IPVA
Server Details
DETRAN MG: IPVA, official-source lookup. Platform-hosted, pay per query with prepaid credit.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- mcp-dir/detran_mg_ipva-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.
The tools have distinct primary purposes, but the marketplace tool bundles multiple sub-actions (including report_bug and list_tools) that overlap with standalone report_bug and toolkit_info. Additionally, authenticate and connect both relate to session management, creating slight ambiguity.
Naming mixes languages (English generic tools vs. Portuguese domain tool) and patterns: verb_noun (show_version, report_bug), bare verbs (authenticate, connect), and noun-based (marketplace, toolkit_info). This inconsistency reduces predictability.
The server is named DETRAN MG: IPVA, yet 6 of 7 tools are generic platform management features (auth, marketplace, bug reporting, version, toolkit state). Only one tool is domain-specific, making the set feel bloated and off-purpose.
For the IPVA domain, a single consultation tool is present, but the platform tools are incomplete and poorly integrated (e.g., no disconnect, marketplace sub-actions overlap with standalone utilities). The overall surface is a hodgepodge rather than a coherent workflow.
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 declare idempotentHint=true and readOnlyHint=false, but the description adds valuable context: it explains what the tool does (returns a link, saves a token) and its two modes (permanent vs session). It doesn't contradict annotations. Some details like potential browser opening or token storage are implied but not explicit, so a 4 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 but somewhat dense, packing multiple instructions into two sentences. It front-loads the purpose and then explains options. Some punctuation could be improved, but it's efficient and well-organized. Points deducted for the slightly run-on second sentence.
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 only one optional parameter and no output schema, the description covers the essential workflows: permanent config, session token, and no-arg link retrieval. It does not describe the return value in detail, but that's not critical. It is sufficiently complete 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?
The input schema has a single optional token parameter with no description. The tool description compensates by explaining that token is a JWT for session-only login)Skip not mandatory (no args gets link), and contrasts with the config approach. This adds meaning beyond the schema, though it could be more explicit about token format or validation. Given low schema coverage, this description does a good job.
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: authenticating with MCP.AI for IDE agents. It uses a specific verb ('log in') and resource ('MCP.AI'), and distinguishes itself from likely siblings like 'connect' by focusing on token-based authentication. The purpose is unambiguous and contextually rich.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides explicit when-to-use guidance: it explains the permanent configuration method versus session-only login, and instructs on calling with no args to get the link. It clearly differentiates usage scenarios and gives actionable instructions, fulfilling the dimension fully.
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 the tool is read-only, idempotent, and non-destructive. The description adds conditional behavioral details, such as returning authenticated:true with empty pending[] or returning connect_url and per-install URLs when credentials are missing. This goes well beyond the annotations and gives the model a clearer picture of the tool's conditional output 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 only two sentences and is highly information-dense. Every sentence adds value: the first states the general purpose, and the second illustrates the different return states. There is no filler or repetition.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With zero parameters and no output schema, the description does a good job of explaining what the tool returns and the main conditional outcomes. It could be a bit more complete by explaining what pending[] contains or how partial connection states are reported, but for a status-checking tool with such a simple interface, the description is sufficient.
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?
There are no parameters in the schema, and schema coverage is 100%, which is the baseline for full coverage. The description therefore does not need to explain parameter meanings. The only enhancement would have been to describe the response object shape, which it partly does via authenticated and pending examples.
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 as returning connection status and URLs, which is specific and informative. It also explains the different response states (authenticated vs. missing credentials), making its purpose unambiguous and distinct from a tool like 'authenticate' which likely performs authentication rather than status reporting.
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 the tool: if you need connection status or authentication URLs. It explicitly distinguishes behavior under different credential states (all connected vs. missing credentials), but it does not explicitly say 'use this to check status, use authenticate to connect', leaving the usage guidance mostly implicit rather than stating a clear alternative.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
detran_mg_ipva_consultarBRead-onlyIdempotentInspect
DETRAN MG: IPVA, 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 | No | ||
| renavam | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and destructiveHint=false, so the tool is known to be a safe read operation. The description adds useful context about payment per query, no credentials required, and LGPD responsibility, which enhances transparency beyond annotations. However, it does not detail what happens on invalid input or data privacy specifics beyond the generic LGPD note.
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 that conveys key information efficiently. It is not overly verbose, and the most important facts are front-loaded. It could be improved with bullet points but is acceptable.
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 moderate complexity (2 params, simple query), the description covers the key points: purpose, data source, payment model, and legal compliance. However, lack of output schema and minimal parameter documentation leaves some ambiguity about how to use the tool effectively, such as the format of 'ano' or what response is expected. It is adequate but not comprehensive.
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 two parameters: renavam (required) and ano (optional). Schema description coverage is 0%, so the description must compensate. The description does not explain the purpose of these parameters or their expected formats. It only mentions the data source and legal aspects, leaving parameter semantics unexplained, which is a 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 specifies that the tool queries IPVA data from DETRAN MG official sources, but it does not explicitly name the operation as 'consult' or 'query'. It distinguishes from siblings by mentioning DETRAN MG and IPVA, though it doesn't contrast with other potential data lookup tools.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage for legitimate purposes (LGPD compliance), but it does not provide explicit guidance on when to use this tool versus alternatives. It mentions it's for official data, but no when-not-to-use or alternative tools are referenced.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
marketplaceAInspect
The official mcp.ai marketplace — the in-platform catalog of every MCP/tool, AND the way to run them. Covers capability requests like "find an MCP that does X", "consulta um CPF", "is there a tool for Y". Core flow: action=search discovers MCPs by intent → describe returns one MCP's full profile (every tool with its id + params, pricing, auth) so you pick the right tool_id → invoke RUNS that tool. KEY: invoke works even when the MCP is NOT installed — it runs the tool pontualmente (one-off), without adding the MCP to the toolkit and without bloating the tool list. If the MCP needs a credential/login, invoke returns a connect link; if it is paid and the wallet is empty, invoke returns a checkout/top-up link (the user opens it, then you retry). Use install only to make an MCP PERMANENT in the active toolkit (its tools then show up natively in future sessions); prefer invoke for a single/occasional use. list_tools lists what is callable right now. subscribe/cancel handle per-MCP billing; report_bug sends feedback; request_mcp asks us to build a NEW MCP when nothing fits. Search/describe flag installed_in_toolkit vs installed_in_workspace. Writes (install/uninstall/subscribe/cancel and the one-off install behind invoke) require workspace owner/admin. It also carries the mcp.ai PROMPT LIBRARY, which is about ready-made prompt TEXT rather than MCPs: search_prompts finds one, get_prompt returns its full text with {{variables}} filled, and publish_prompt saves a prompt and returns a shareable mcp.ai/p/ link that opens without login.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | ||
| query | No | ||
| action | No | search | |
| mcp_id | No | ||
| message | No | ||
| tool_id | No | ||
| arguments | No | {} | |
| immediate | No | ||
| tier_slug | No | ||
| prompt_body | No | ||
| prompt_slug | No | ||
| prompt_tool | No | ||
| prompt_vars | No | {} | |
| conversation | No | [] | |
| prompt_title | No | ||
| request_name | No | ||
| cancel_reason | No | ||
| cancel_comment | No | ||
| prompt_targets | No | ||
| report_context | No | ||
| prompt_category | No | ||
| request_details | No | ||
| prompt_description | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Beyond the annotations (readOnlyHint=false, openWorldHint=true), the description discloses critical behavioral traits: invoke runs one-off even if the MCP is not installed without bloating the toolkit, auth failures return a connect link, payment issues return a checkout/top-up link with a retry instruction, and writes (install/uninstall/subscribe/cancel) require workspace owner/admin. These specifics add real operational context that annotations alone do not provide.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is long but every sentence contributes unique operational detail. It is front-loaded with the core purpose, uses a clear arrow flow for the core sequence, and marks key nuances with 'KEY:'. The length is justified for a 14-action tool, though a slight tightening of the prompt-library section could make it more 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 high complexity (23 params, 14 actions, no output schema), the description covers the main workflows well: search→describe→invoke, install vs invoke, credential/payment edge cases, permissions, and prompt library. But it omits some actions (resume) and several params (immediate, tier_slug, conversation, etc.), leaving gaps for an agent to infer those meanings. Still, it is far more complete than most tool descriptions.
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 carries the full burden. It explains the action enum values, mcp_id and tool_id in the flow, and prompt library params like prompt_slug and prompt_vars. However, several parameters remain unexplained (immediate, tier_slug, conversation, cancel_reason, prompt_targets, request_details, etc.), so it does not fully compensate for the schema 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 opens with a precise declaration: 'The official mcp.ai marketplace — the in-platform catalog of every MCP/tool, AND the way to run them.' It then enumerates the specific capability areas (search, describe, invoke, install, prompt library) and distinguishes the tool from siblings by covering both catalog discovery and execution.
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: 'Core flow: action=search discovers MCPs by intent → describe returns one MCP's full profile ... so you pick the right tool_id → invoke RUNS that tool.' It also contrasts invoke vs install ('Use install only to make an MCP PERMANENT... prefer invoke for a single/occasional use') and names alternative tools like list_tools and search_prompts, covering when to use each.
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 declare the operation as idempotent, non-destructive, and not read-only. The description adds useful behavioral context by stating that the conversation array is used for reproduction. This goes beyond the structured data without contradicting it.
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 short sentences, front-loaded with the primary purpose and followed by one key usage note. Every word earns its place; no redundant or filler language.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool is simple with three parameters and no output schema. The description covers purpose and the conversation parameter but omits semantics for message and context, leaving an incomplete picture for an agent. It is adequate for a minimal viable understanding but not comprehensive.
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 mentions only the 'conversation array' and its purpose, but fails to explain the meanings of 'message' (required) and 'context.' With three parameters and no schema descriptions, 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 uses a specific verb and resource: 'Report a bug, missing feature, or send feedback.' This clearly defines what the tool does and distinguishes it from sibling tools (e.g., authenticate, connect, detran_mg_ipva_consultar), which are unrelated.
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 indicates the appropriate use cases (bug, missing feature, feedback) and provides a practical instruction: include the conversation array for reproduction. It does not explicitly name alternatives or exclusions, but the context is clear and no sibling tool overlaps.
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?
The annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, covering the safety profile. The description adds specificity by mentioning both platform and adapter versions, but it does not enrich behavioral context beyond what annotations imply. It does not contradict annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, dense, front-loaded sentence with zero superfluous words. Every word carries meaning, making it ideal for quick agent parsing.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a tool with no parameters, no output schema, and clear annotations, this description is entirely complete. It accurately tells the agent what the tool does, and there is no missing information that would hinder invocation.
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 description need not add parameter meaning. Per the rule, a baseline of 4 applies, and since schema coverage is 100% (vacuous) and there's nothing to explain, this is fully adequate.
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: showing current MCP platform and adapter versions. It uses a specific verb ('Show') and a specific resource, and it easily distinguishes from sibling tools like authenticate, connect, or marketplace, which have unrelated 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 tool is so straightforward that usage context is implied: it's for checking version information. No explicit alternatives exist among siblings, and the description provides clear context without needing exclusions. A score of 4 is appropriate for a self-explanatory informational tool.
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?
The annotations already establish readOnlyHint=true, destructiveHint=false, and idempotentHint=true, so the agent knows this is safe to call. The description adds useful context about what the returned state contains, but it does not describe any additional behavioral traits such as staleness, latency, or side effects. This is adequate but not exceptional given the strong 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 one sentence, front-loads the core action, and every phrase adds value by specifying exactly what toolkit state is exposed. There is no filler, vague jargon, or duplication of the schema or annotations.
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 no-input, read-only introspection tool with full annotation coverage, the description is complete: it enumerates the return categories and leaves no obvious gaps. Since there is no output schema, the description appropriately carries the burden of explaining what information the caller will receive.
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?
There are zero parameters and the input schema is empty, so no parameter documentation is needed. The description fully clarifies what the tool reports, and the schema needs no additional semantic help.
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 identifies a concrete resource ('the current toolkit state') while enumerating the exact content included: installed MCPs, connection status, accounts, and catalog-tool counts. This clearly distinguishes it from sibling tools like authenticate, connect, and show_version, as it is an informational/overview tool rather than an action or version tool.
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 intended use obvious: call this tool to inspect installed MCPs, connection status, and account associations. It does not explicitly name alternatives or state when not to use it, but the role of an introspection/status tool is clearly implied, and the sibling tools are distinct action-oriented tools.
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 gradedqualityCmaintenanceMCP server to consult IPVA (vehicle property tax) debts from SEFAZ MG (Minas Gerais state). It offers a read-only tool that queries official debt data, hosted on a pay-per-query basis.MIT
- AlicenseNot gradedqualityCmaintenanceEnables querying DETRAN RJ IPVA DARJ (vehicle tax) information from official sources via a read-only MCP server, with prepaid per-query credits.MIT
- AlicenseNot gradedqualityCmaintenanceA hosted read-only MCP server that enables querying IPVA (vehicle property tax) information from the official SEFAZ Bahia source, with prepaid credit-based usage and no platform credentials.MIT
- AlicenseNot gradedqualityCmaintenanceProvides a read-only MCP tool to query IPVA (vehicle tax) information from the official Ceará state revenue service (SEFAZ) via prepaid credits.MIT