DETRAN MA: Impressão de CRLV
Server Details
DETRAN MA: Impressão de CRLV, official-source lookup. Platform-hosted, pay per query with prepaid cr
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- mcp-dir/detran_ma_crlv-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.1/5 across 7 of 7 tools scored. Lowest: 3.5/5.
The DETRAN-specific consultation tool is unmistakable, and the platform utilities generally have distinct roles. The only real ambiguity is that connect and toolkit_info both expose connection/account state, which prevents a perfect score.
All names use lowercase_with_underscores, but the structural pattern is mixed: verb-only names (authenticate, connect), verb_noun names (report_bug, show_version), noun-only names (marketplace), and a Portuguese noun-noun-verb name (detran_ma_crlv_consultar). The names are readable but do not follow a single predictable convention.
Seven tools is not inherently excessive, but only one tool serves the server's stated DETRAN CRLV purpose. The other six are generic marketplace, connection, and maintenance utilities, making the set feel bloated and off-topic for such a narrow domain.
The core CRLV consultation operation is present and likely sufficient for a read-only official-source lookup. However, the server name promises printing/output, and there is no explicit print/download or vehicle-document workflow, leaving a notable gap.
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 goes beyond the annotations by explaining two key behaviors: returning a browser link when called with no args and accepting a JWT token to establish a session. It also adds context about permanent, non-expiring vs. session-only authentication. The main omission is a clear statement of what happens on success or failure, but the existing disclosure is still solid.
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 packs multiple pieces of information into a single paragraph but remains dense without redundancy. The structure could be improved with clearer separation between the config-based method, the session-based method, and the no-argument shortcut, but no sentence is wasted.
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 an authentication tool with no output schema, the description gives a usable workflow: when to call with a token, when to call without, and how to configure a permanent connection. It does not explicitly describe the response format beyond 'get the link', but the overall guidance is sufficient for an agent to invoke the tool correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Despite the input schema having only a bare token property with zero description coverage, the description fully explains the token's meaning and how the caller should supply it. It distinguishes between pasting the token as { token: '<jwt>' } and omitting it to receive the login link. This completely compensates for the missing schema documentation.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: authenticating to MCP.AI by logging in in the browser and obtaining an access token. It specifies the main resource (MCP.AI) and distinguishes the tool from unrelated siblings like marketplace or show_version. The verb 'log in' and the authentication flow leave no 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?
The description gives explicit usage modes: adding the token to server config for a permanent connection, or passing a token for session-only login. It also explains that calling with no arguments returns the login link, providing a clear decision path for the agent. This is strong usage guidance even without naming sibling alternatives.
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 provide readOnlyHint=true and idempotentHint=true, so the safe, non-destructive nature is clear. The description adds context about the output structure when all providers are connected vs. missing credentials, which is useful. However, it does not explain what happens if some providers are connected and others are not, or the exact format of per-install URLs, leaving some ambiguity.
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, concise and front-loaded with the primary purpose. It includes conditional behavior without excessive detail. Slight deduction for not specifying the shape of 'connect_url' or 'per-install URLs', but the structure is efficient.
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 no required parameters and no output schema, so the description does not need to document parameters or return types. It covers the key scenario of all-connected vs. missing credentials, but omits edge cases like partial connectivity or the exact JSON structure of the response. Given the simplicity, it is adequate but could be more explicit about the full set of possible states.
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 no parameters, there is nothing to document, and the context signal indicates 100% schema description coverage (trivially, as there are no parameters). The description focuses on the return semantics, which is appropriate. Since there are no parameters, a baseline of 4 is reasonable.
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 that the tool returns connection status and URLs, distinguishing it from siblings like 'authenticate' by focusing on status rather than action. It specifies the behavior under different conditions (all connected vs. missing credentials), which is more specific than a mere 'check status'.
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, which is a read-only operation, aligned with the annotations. However, it does not explicitly compare to alternatives like 'authenticate' or 'toolkit_info', leaving the agent to infer when to use this tool over others. No when-not-to-use guidance is provided.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
detran_ma_crlv_consultarARead-onlyIdempotentInspect
DETRAN MA: Impressão de CRLV, 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 |
|---|---|---|---|
| placa | Yes | ||
| renavam | Yes | ||
| documento_proprietario | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description adds meaningful behavioral details beyond the readOnly and idempotent annotations: it mentions prepaid credit payment, official data source, non-confidential nature, and LGPD responsibility. This enriches the agent's understanding of the tool's operational and legal context without contradicting the 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 concise, consisting of three sentences, and is front-loaded with the primary purpose. Every sentence adds relevant context (purpose, payment, data source, legal) without redundancy or unnecessary 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?
The description sufficiently covers the tool's core purpose, payment mechanism, official sourcing, and legal compliance. While it does not specify output format or error handling, for a simple CRLV query tool the provided context is adequate, though it could mention expected output (e.g., document PDF).
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 description provides no elaboration on the three required parameters (placa, renavam, documento_proprietario). Since the schema lacks any descriptions, the description fails to compensate for the low schema coverage, leaving parameter meaning entirely unaddressed.
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: printing CRLV documents and consulting an official source. It explicitly names the resource (CRLV) and the action (consulta/impressão), distinguishing it from the generic platform-level sibling 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 purpose implies usage for CRLV retrieval, but the description does not explicitly state when to use this tool over alternatives or provide usage scenarios. It conveys the context of an official, prepaid query, but lacks direct 'use this when' guidance.
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?
Goes far beyond annotations by revealing invoke's one-off behavior even when MCPs are not installed, the credential/wallet fallback links, workspace owner/admin write permissions, and the installed_in_toolkit vs workspace flags. Prompt library behavior (link not requiring login) is also disclosed. 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 long but densely informative and logically structured, starting with the core concept and flowing through key behaviors, permissions, and prompt library. Every sentence adds value, though the length could be slightly overwhelming for quick scanning.
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?
Covers most of the 14 actions and main behaviors, including auth, billing, permissions, and prompt library. However, the 'resume' action and some parameters (immediate, conversation, tier_slug) are not mentioned. For a highly complex tool with no output schema, this is still a very high degree of completeness.
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 has 0% description coverage, so the description must compensate. It does explain the meaning of key parameters through workflow descriptions (action, mcp_id, tool_id, arguments, query, limit, prompt_*), but several params like 'immediate', 'tier_slug', 'conversation', and 'resume' are not explicitly described. Slightly incomplete, but strong overall.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's role as 'the official mcp.ai marketplace' and 'the way to run' MCP/tools, with specific verbs like 'search', 'describe', 'invoke', and 'install'. It distinguishes itself from sibling tools by covering catalog discovery, invocation, installation, billing, and prompt library in one place.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Provides an explicit core flow (search → describe → invoke) and contrasts invoke vs install: 'prefer invoke for a single/occasional use' vs 'use install only to make an MCP PERMANENT'. Also explains when to use list_tools, subscribe/cancel, report_bug, request_mcp, and the prompt library functions. This is model-level usage guidance.
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?
The description adds some behavioral context by instructing the agent to include the conversation array for reproduction. Given annotations already communicate readOnly=false, idempotentHint=true, and destructiveHint=false, the description does not need to restate those. However, it does not disclose what happens after submitting, such as external transmission or whether confirmation is returned.
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 with no filler. The first sentence states purpose, and the second provides the key usage instruction. Every phrase earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple feedback tool with no output schema and only three parameters, the description gives a functional overview and one usage tip. However, the conversation type mismatch and lack of parameter-level details mean the agent may not construct the request correctly without further inference.
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, but it only explains the conversation parameter, and even that is imprecise: it calls it an "array" while the schema declares it as a string. The required "message" parameter and the optional "context" parameter are left implicit and undocumented.
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 clearly states the tool's purpose: "Report a bug, missing feature, or send feedback." This is a specific verb plus resource and is distinct from sibling tools like authenticate, connect, and show_version.
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 context for when to use the tool: when the user wants to report a bug, request a missing feature, or send feedback. It also gives a practical instruction to include the conversation array for reproduction, though it does not explicitly mention when not to use it or name alternatives.
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 and idempotentHint=true, so the read-only nature is covered. The description adds no extra behavioral details beyond what annotations provide (e.g., return format). Given that annotations carry the safety profile, the description does not need to repeat it, and 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 a single, concise sentence that conveys the entire purpose without filler. It is front-loaded and wastes no words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a tool with no parameters, no output schema, and a trivial read-only function, the description fully satisfies the need. No additional context (like error handling) is necessary given the simplicity. The annotations cover safety, and the description covers purpose.
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 0 parameters, and schema description coverage is 100% (trivially, no properties). The baseline for zero parameters is 4; nothing is needed from the description. The description adds no parameter details because none exist.
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 clearly states the tool's action: 'Show the current MCP platform and adapter versions.' The verb 'Show' plus the specific resource ('MCP platform and adapter versions') makes the purpose unambiguous and distinguishes it from siblings like connect or authenticate, which have different objectives.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies the obvious use case—whenever version information is needed. It does not explicitly mention alternatives or exclusions, but for a simple zero-parameter version tool, this level of guidance is sufficient. No competing tool among siblings serves the same purpose.
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, establishing this as a safe read operation. The description adds value by detailing exactly what state is exposed (installed MCPs, connection status, accounts, catalog tool counts), which goes beyond what the annotations convey. This is exactly the kind of additional context that helps an agent understand what to expect. No contradiction with annotations; description aligns with read-only, idempotent 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?
One sentence, 20 words, front-loads the action verb 'Returns' and packs in all key details: toolkit state, MCPs, connection status, accounts, and catalog tool counts. Every word earns its place; no fluff, no redundancy. Excellent example of a concise yet information-dense description.
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, idempotent tool with no output schema, the description covers the functional contract well. It explains what the tool returns in enough detail for an agent to decide when to call it. A small deduction because it doesn't mention the exact structure or format of the response (e.g., is it a list or map?), though the description's list of fields is reasonably complete for decision-making. The presence of sibling tools like show_version and authenticate suggests this tool is the primary state query, which is clear from the description.
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 parameters, the schema is trivially complete at 100% coverage. The description correctly doesn't invent parameters and instead focuses on the return value, which is the right call. For a parameterless tool, the description's job is simply not to add confusion, and it succeeds. Baseline 4 for 0 params, upgraded to 5 because the description effectively communicates the output semantics, which is the only thing to get right here.
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 it returns the current toolkit state, listing specific elements: installed MCPs, connection status, accounts, and catalog tool counts. While it doesn't explicitly contrast with siblings, the level of detail (installed MCPs, connection status, accounts, catalog tool counts) makes the purpose unambiguous and distinguishes it adequately from the sibling tools like authenticate or connect.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies this is the go-to tool for state/status queries, but doesn't explicitly state when to prefer it over siblings like show_version or authenticate. It provides clear context on what information is returned but lacks explicit when/when-not guidance or alternative tool mentions, which would be useful given the toolkit context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Servers
- Alicense-qualityCmaintenanceProvides a read-only MCP tool to query IPVA (vehicle tax) information from the official Ceará state revenue service (SEFAZ) via prepaid credits.MIT
- -license-quality-maintenanceEnables querying DETRAN RJ IPVA DARJ (vehicle tax) information from official sources via a read-only MCP server, with prepaid per-query credits.
- Alicense-qualityCmaintenanceA 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
- Alicense-qualityCmaintenanceRead-only MCP server for consulting IPVA (vehicle property tax) data from the official SEFAZ GO source in Brazil, using prepaid credits and compatible with any MCP client.MIT