DETRAN PR: Veículo (Completa)
Server Details
DETRAN PR: Vehicle (Completa), official-source lookup. Platform-hosted, pay per query with prepaid c
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- mcp-dir/detran_pr_veiculo_completa-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.3/5 across 6 of 7 tools scored.
The DETRAN PR specific tool is clearly distinct, but several platform-level tools (marketplace, toolkit_info, connect) overlap in describing installed vs. available MCPs and connection status, which could cause confusion about which to use for checking capability and connectivity.
Tool names mix conventions: 'authenticate', 'connect', 'marketplace', 'report_bug', 'show_version', 'toolkit_info' are generic and use various styles (snake_case, camelCase with underscores, plain words), while 'detran_pr_veiculo_completa_consultar' is domain-specific. No consistent verb_noun pattern.
7 tools is a moderate count, but they serve two different purposes: a single domain-specific data query tool and a generic platform administration toolkit. The count is neither too thin nor heavy, but the mix makes it feel somewhat imbalanced.
The domain-specific surface is severely incomplete: only a single consultation tool for vehicle data, with no related operations (e.g., history, multiple query types, or batch). The platform tools are generic and not tailored to the DETRAN domain, so agents have limited capabilities for actual vehicle information workflows.
Available Tools
7 toolsauthenticateAIdempotentInspect
MCP.AI for IDE agents (Cursor, etc.): log in in the browser, copy the access token. Best: add it to this server's config as a header Authorization: Bearer <token> for a permanent, non-expiring connection. Or paste it here for a session-only login: call with { token: "" } after the user pastes, or with no args to get the link.
| Name | Required | Description | Default |
|---|---|---|---|
| token | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description adds behavioral context beyond the annotations: it explains that the token is non-expiring if added to config, versus session-only when pasted. It mentions the browser login flow and the need for the user to paste the token. While annotations are present (idempotentHint, readOnlyHint), the description provides valuable detail about how the token is used and the permanence of the setup.
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, front-loaded with the primary purpose, and uses a structured flow: browser login, copy token, then two alternatives (config or session). Every sentence contributes to explaining the authentication process, and it avoids 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?
Given the simplicity of the tool (one optional parameter, no output schema, no nested objects), the description is fairly complete. It explains the authentication flow for both permanent and session-based usage. However, it could have briefly mentioned what response or outcome the agent can expect (e.g., confirmation of auth), but given the low complexity, the description covers the essential context.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has one optional parameter 'token' with no description, and schema description coverage is 0%. The description explains the semantics of the token parameter: it is a JWT that can be passed after the user pastes it, or omitted to get the login link. This adds meaning beyond the schema, but since there is only one optional parameter, the description's explanation is adequate though not extensive.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: to authenticate an IDE agent (like Cursor) by logging in via browser, obtaining an access token, and either configuring it permanently or using it for a session-only login. It specifically identifies the action (authenticate) and the resource (MCP.AI server), which distinguishes it from siblings like 'show_version' or 'toolkit_info'.
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 two usage scenarios: (1) adding a permanent header to the server config, and (2) passing a token for a session-only login, including the option to call with no args to get the login link. It implicitly differentiates from siblings by focusing on authentication context, and it gives clear alternatives (permanent vs. session-based).
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 cover read-only, non-destructive, and idempotent behavior. The description adds valuable conditional detail beyond annotations, such as authenticated:true with empty pending[] when connected, and connect_url plus per-install URLs when credentials are missing. No contradiction exists.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two compact sentences, immediately front-loads the core purpose, and condenses both success and missing-credential behaviors into efficient, useful prose. No filler or repetition exists.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a zero-parameter, read-only status tool with no output schema, the description is sufficiently complete: it identifies return fields and the two primary states. It could mention error behavior or exact output formatting, but neither is essential for this simple tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema is empty with 100% schema coverage, so there are no parameter details to explain. The zero-parameter baseline applies, and the description adds no confusing or unnecessary parameter-related ambiguity.
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 explicitly states a specific verb and resource: 'Returns connection status and URLs.' It also describes the two main output states, which makes the tool's purpose distinct from sibling tools like authenticate or marketplace.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description clearly implies when to use the tool: check whether providers are connected and retrieve URLs when credentials are missing. It does not explicitly name alternatives or say 'use authenticate to initiate credentials,' so it stops short of full explicit guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
detran_pr_veiculo_completa_consultarARead-onlyIdempotentInspect
DETRAN PR: Veículo (Completa), 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 |
|---|---|---|---|
| renavam | Yes | ||
| pkcs12_cert | Yes | ||
| pkcs12_pass | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already mark the tool as read-only, idempotent, and non-destructive. The description adds meaningful context: data is from official Brazilian sources, is not confidential, is the same available to citizens, payment is via prepaid credit, no platform credentials are needed, and LGPD obligations belong to the client. This goes well beyond the annotation baseline.
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 front-loaded with the core purpose and each sentence provides distinct information: source, hosting/payment, data classification, and LGPD responsibility. It is slightly repetitive in mentioning 'fonte oficial' and 'fontes e órgãos oficiais', but otherwise every sentence 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?
The description covers purpose, payment, legal context, and data sensitivity, which is strong for a simple read-only query tool. However, there is no output schema and the description never explains what data fields are returned or what the required parameters mean, leaving notable gaps for an agent deciding how 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?
Schema coverage is 0% and the description provides no explanation for renavam, pkcs12_cert, or pkcs12_pass. The phrase 'sem credenciais da plataforma' could even confuse an agent since certificate credentials are still required. The description fails to compensate for the complete lack of parameter 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 performs a vehicle query ('consulta') against DETRAN PR's official source, with scope 'Veículo (Completa)'. It also distinguishes itself from unrelated sibling platform tools (authenticate, connect, marketplace, etc.) and specifies the data comes from official Brazilian sources.
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 clear usage context: official source, no platform credentials required, prepaid pay-per-query, and non-confidential citizen-available data. It does not explicitly name alternative vehicle-query tools, but the sibling list contains no comparable data tools, so this is acceptable; however, no explicit when/when-not guidance is provided.
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 numerous non-obvious behaviors: invoke works even when the MCP is not installed, it returns a connect link for auth, a checkout/top-up link for payment, and writes require workspace owner/admin. Annotations give minimal behavioral hints (readOnlyHint=false, etc.), so the description carries the burden and does so richly. 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 each sentence adds unique information given the tool's 14 actions. It is front-loaded with the core identity and organizes content around flow, key notes, and prompt library. However, it is a dense block of text; breaking it into bullets or sections would improve scannability.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description covers the core flow, auth/payment handling, permission requirements, and the prompt library, which is a lot for a complex tool. Yet some actions (e.g., resume, uninstall) and parameters (e.g., immediate, conversation) are omitted, leaving minor gaps. It is fairly complete but not exhaustive given the lack of an output schema.
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 param meanings. It explains key params like action, mcp_id, tool_id, and arguments through the core flow, and the action enum values are described. However, many parameters (immediate, tier_slug, conversation, cancel_reason, prompt_targets, etc.) are not explained, leaving the agent with incomplete semantic knowledge. It partially compensates but not fully.
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 is 'the official mcp.ai marketplace' and 'the way to run them', distinguishing it from siblings like authenticate, connect, and toolkit_info. It specifies the resource (MCPs/tools and prompt library) and the actions (search, describe, invoke, etc.) it supports. This is a specific and informative purpose statement.
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 guidance on when to use different actions: 'prefer invoke for a single/occasional use' and 'Use install only to make an MCP PERMANENT'. It also explains when to use list_tools, subscribe/cancel, report_bug, and request_mcp. This gives clear decision-making criteria for the agent.
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 idempotentHint=true, destructiveHint=false, and readOnlyHint=false, so the description does not need to repeat these. It adds a behavioral hint about including conversation data for reproduction, which is useful context beyond the schema. No contradictions found.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise—two sentences—and front-loads the purpose. Every word adds value, no filler or redundancy.
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, the description covers the core purpose and provides one key usage tip. It is sufficient for an agent to understand what to do, but lacks clarity on the 'context' parameter and potential side effects, though idempotentHint covers repeats.
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 clarify parameters. The description mentions the conversation array but not the 'message' or 'context' fields. 'message' is required and its meaning is implied, but 'context' is unexplained. The conversation field is described as an 'array' even though it's typed as string, which could be misleading.
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 a clear verb and resource: 'Report a bug, missing feature, or send feedback.' It is specific about the three purposes and distinguishes itself from sibling tools like authenticate or connect, 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 instructs to include the conversation array for reproduction, giving clear context on how to use it. However, it does not explicitly state when not to use this tool or mention alternatives, but the sibling tools are unrelated enough that it's not necessary.
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 tool is marked readOnlyHint=true, idempotentHint=true, and destructiveHint=false in annotations, so the safety profile is already well-defined. The description adds meaningful context by specifying exactly what the tool reports—platform and adapter versions—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 a single, compact sentence that clearly states the tool's purpose with no filler or redundancy. Every word earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a zero-parameter, read-only, idempotent version-reporting tool with annotations already provided, this description is complete. It fully informs an agent of what the tool does, and no output schema or side effects need to be addressed.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
With zero parameters and 100% schema coverage, there is nothing for the description to clarify. The baseline of 4 applies, and the description adds no unnecessary parameter details.
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 precise resource ('current MCP platform and adapter versions'), making the tool's exact purpose immediately clear. It is easily distinguished from the sibling tools, which cover authentication, connection, vehicle queries, marketplace, bug reporting, and toolkit 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 description implies the usage context: when you need to know the current version of the MCP platform or adapter. It does not explicitly discuss exclusions or alternatives, but given the simplicity and uniqueness of this tool, the context is sufficiently clear.
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. The description goes beyond these by detailing the exact behavioral output (MCP statuses, connected accounts, catalog tool counts), which enriches the agent's understanding of what a read-only, non-destructive call will return. No contradiction found and the disclosure is highly informative.
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, well-structured sentence that front-loads the core purpose ('Returns the current toolkit state') and then lists specific details without redundancy. Every word adds value, making it extremely concise and 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?
Given there are no parameters, no output schema, and comprehensive annotations, the description fully covers the necessary context for an agent to understand what this tool does and what information it will receive. The level of detail matches the task complexity perfectly, leaving no gaps.
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 0 parameters, so the schema provides complete coverage (100%). Per the rubric, the baseline is 4. The description focuses on return behavior rather than parameters, which is appropriate here since there is nothing to add about parameters. There is no penalty for not discussing parameters when 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?
The description uses a specific verb ('Returns') with a well-defined resource ('current toolkit state') and enumerates the exact components (installed MCPs, connection status, accounts, catalog tool counts). This clearly distinguishes it from siblings like `connect`, `authenticate`, and `show_version`. It is specific and unambiguous.
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 no explicit guidance on when to use this tool versus alternatives like `connect` or `show_version`. There is no mention of prerequisites, exclusions, or decision points. The usage context is only weakly implied by the name and return content, so it falls short of even 'implied usage' at level 3.
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 for consulting IPVA (vehicle tax) information from the official Paraná state tax agency (SEFAZ PR), enabling read-only queries through any MCP-compatible client with prepaid per-use credits.MIT
- AlicenseNot gradedqualityCmaintenanceConsulta restrições e bloqueios ativos DETRAN em fonte oficial via MCP. Servidor somente leitura, hospedado, com pagamento por uso via créditos pré-pagos.MIT
- AlicenseNot gradedqualityCmaintenanceConsulta em fonte oficial a base estadual de veículos de São Paulo via MCP, permitindo verificar dados de veículos com linguagem natural, somente leitura e pagamento por uso com créditos pré-pagos.MIT
- AlicenseNot gradedqualityCmaintenanceMCP server for querying official Brazilian vehicle data (SENATRAN), offering a read-only consultation tool via hosted API with prepaid credits.MIT