INMETRO Instrumentos: Veículos Tanque
Server Details
INMETRO Instrumentos: Vehicles Tanque, official-source lookup. Platform-hosted, pay per query with p
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- mcp-dir/inmetro_instrumentos_vc_tanque-mcp
- GitHub Stars
- 0
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
Full call logging
Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.
Tool access control
Enable or disable individual tools per connector, so you decide what your agents can and cannot do.
Managed credentials
Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.
Usage analytics
See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.
Tool Definition Quality
Average 3.8/5 across 6 of 7 tools scored. Lowest: 1.7/5.
The server includes a mix of platform-level tools (authenticate, connect, marketplace, report_bug, show_version, toolkit_info) and one domain-specific tool (inmetro_instrumentos_vc_tanque_consultar). The platform tools are mostly distinct, but 'authenticate' and 'connect' overlap in dealing with connection status, and 'marketplace' has a very broad description that could be confused with 'toolkit_info' regarding listing available tools.
Naming is inconsistent: platform tools use simple verbs (authenticate, connect, report_bug, show_version) or noun-based names (toolkit_info), while the single domain tool uses a long snake_case name (inmetro_instrumentos_vc_tanque_consultar) that doesn't follow any pattern. There is no consistent verb_noun or other pattern.
7 tools is within a reasonable range, but the server appears to be a hybrid: one domain-specific tool plus several platform management tools. The count feels slightly heavy for the stated domain (INMETRO instruments consultation), as most tools are about managing the MCP platform itself rather than domain functionality.
The domain is vehicles tank instruments from INMETRO, but only one tool addresses that domain - a single query operation. There are no related tools for other INMETRO instrument types, no supplementary operations, and the platform tools seem unrelated to the domain. The surface is severely incomplete for the stated purpose of 'INMETRO Instrumentos: Veículos Tanque'.
Available Tools
7 toolsauthenticateAIdempotentInspect
MCP.AI for IDE agents (Cursor, etc.): log in in the browser, copy the access token. Best: add it to this server's config as a header Authorization: Bearer <token> for a permanent, non-expiring connection. Or paste it here for a session-only login: call with { token: "" } after the user pastes, or with no args to get the link.
| Name | Required | Description | Default |
|---|---|---|---|
| token | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate the tool is not read-only and is idempotent. The description adds valuable behavioral context: calling with no args yields a login link, calling with a token establishes a session-only login, and the token is a JWT. It does not disclose failure modes (e.g., invalid token handling), but for a simple auth tool it provides meaningful transparency beyond 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 reasonably concise but slightly stream-of-consciousness, mixing user-facing instructions with tool API guidance. It front-loads the tool's purpose and each sentence contributes value, though it could be structured more cleanly (e.g., separate 'no args' vs 'with token' cases).
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 one optional parameter and no output schema, the description covers the workflow adequately: how to initiate (no args), how to complete (token), and the permanent alternative (config header). It does not describe return values or error conditions, but the flow context is sufficient for an agent to invoke it correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
With 0% schema description coverage, the description fully compensates by explaining the token parameter: 'call with { token: "<jwt>" } after the user pastes, or with no args to get the link.' It also clarifies that the parameter is optional and gives the exact invocation format, which is more than the bare schema provides.
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 the tool's purpose: authenticate with the MCP.AI server by returning a login link (when called with no args) or accepting a pasted JWT token. It is specific about the resource and action, though it interleaves user instructions ('log in in the browser, copy the access token') with tool behavior, slightly reducing crispness.
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: for a permanent connection, recommends configuring an Authorization header in the server config; for session-only login, call this tool with a token or with no args to get the link. This effectively distinguishes between configuration-based and session-based authentication, though it doesn't explicitly compare against sibling tools like 'connect'.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
connectARead-onlyIdempotentInspect
Returns connection status and URLs. When all providers are connected, returns authenticated:true and empty pending[]. When credentials are missing, returns connect_url for the toolkit and per-install URLs.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is clear. The description adds value by explaining the response behavior in different states (all connected vs. missing credentials), which goes beyond the annotations. No contradiction 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 two sentences, front-loaded with the core purpose, and every sentence adds value. It efficiently explains the tool's behavior without 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?
Given the tool has no parameters and no output schema, the description adequately explains the return values and states. It covers the main scenarios (all connected vs. missing credentials) and is complete for a simple status tool. Could mention edge cases like partial connectivity, but overall 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?
The tool has zero parameters, so the description does not need to explain parameter semantics. The schema coverage is 100% (vacuously), and the description focuses on the output behavior, which is appropriate for a parameterless tool.
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 returns connection status and URLs, and distinguishes it from siblings like authenticate and marketplace by focusing on status reporting. It is specific about the resource (connection status) and the action (returns), though it could be more explicit about being a read-only status check.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage for checking connection status, but does not explicitly state when to use it versus alternatives like authenticate. It provides context on what the response looks like in different states, but lacks explicit when-not-to-use guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
inmetro_instrumentos_vc_tanque_consultarDRead-onlyIdempotentInspect
INMETRO Instrumentos: Veículos Tanque, 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 |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, and the description does not contradict these. However, the description focuses on legal and commercial aspects (LGPD, payment, data controller) rather than behavioral characteristics like what the tool returns, how it handles errors, or rate limits. It adds some context about data source (official Brazilian sources) and non-confidentiality, but that is not sufficient.
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 paragraph of moderate length but is not front-loaded with the core action. It mixes legal disclaimer, payment details, and data privacy information. Every sentence is not earning its place; for example, 'não é dado sigiloso' and 'O cliente é o controlador dos dados' are legal boilerplate that could be omitted. It is not concise in terms of clarity.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool has a simple schema (one required parameter) and no output schema, the description is insufficiently complete. It does not explain what query results will contain, how to interpret the output, or any specific details about the consultation process. The description emphasizes legal and payment aspects but omits the essential functional details that an agent needs to correctly invoke the tool and interpret its response.
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% for the single parameter 'placa'. The description does not describe what 'placa' means beyond the context of 'veículos tanque' (tank vehicles), and it does not specify format (e.g., license plate format, required pattern). The description mentions 'consulta' and 'placa' is implied, but the description does not add any parameter semantics beyond the schema's name. Given the low coverage, the description should compensate but does not.
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 does not use a clear verb+resource pattern. It mentions 'INMETRO Instrumentos: Veículos Tanque, consulta em fonte oficial' but lacks a specific action like 'Consultar dados de...' It does not distinguish from sibling tools (all are generic platform tools, none similar). The name implies 'consultar' but the description is more about legal/business context than the tool's function.
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 guidance on when to use this tool versus alternatives. It mentions 'pague por consulta' and 'sem credenciais' but these are operational constraints, not usage context. It does not explain scenarios where this tool is appropriate, nor does it mention alternatives. The sibling tools are unrelated, but no explicit usage guidance is given.
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?
Annotations only say readOnlyHint=false and destructiveHint=false; the description adds substantial behavioral detail: invoke runs tools one-off without installing or bloating the tool list, writes require workspace owner/admin, invoke returns auth/payment links, and search/describe flag installed_in_toolkit vs installed_in_workspace. No contradiction exists 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 and dense, but every section adds value given the tool's 14 actions and 23 parameters. It is front-loaded with identity and core flow, then covers invoke vs install, permissions, and prompt library. A bit more structure (e.g., separating prompt-library content) would improve scannability, but there is no filler.
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 highly complex multi-action tool with no output schema and 23 parameters, this description covers the main architecture, auth/payment edge cases, permissions, and the prompt-library subdomain. It slightly omits explanations for actions like resume and parameters like immediate/tier_slug, but overall it is remarkably complete for this complexity level.
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%, but the description compensates by explaining the semantic roles of key parameters: action controls search/describe/invoke/install/prompt operations, tool_id selects the exact tool, mcp_id identifies the MCP, arguments carries tool params, and prompt_vars corresponds to {{variables}} filling. It does not individually document all 23 parameters, but the flow-level explanation is unusually helpful for a tool with zero param descriptions.
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 this is the mcp.ai marketplace catalog for discovering and running MCPs/tools, with a concrete core flow (search → describe → invoke) and additional prompt-library functions. It distinguishes itself from sibling tools by naming its specific catalog/run role and even differentiates its own actions (invoke vs install, search_prompts vs search).
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 explicit when-to-use guidance: 'prefer invoke for a single/occasional use', 'Use install only to make an MCP PERMANENT', and 'list_tools lists what is callable right now'. It also explains conditional flows like connect links for missing credentials and checkout links for empty wallets, giving clear decision context.
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 disclose safety traits (readOnlyHint=false, destructiveHint=false, idempotentHint=true), so the description only needs to add behavioral context beyond that. It adds the reproducibility instruction about the conversation array, which is useful, but it does not describe post-submission behavior or consequences of sending duplicates. No contradictions with annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The entire description is a single, well-structured sentence that front-loads the purpose and follows with a key operating instruction. There is no filler, repetition, 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?
For a simple 3-parameter tool with no output schema and reasonable annotations, the description provides enough for an agent to know when and roughly how to invoke it. It is not completely exhaustive because the optional 'context' param remains ambiguous and there is no final guidance on what happens after report, but the core mechanism and scope are well covered.
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 partially does: it explains the purpose of the 'conversation' parameter (reproduction array) and indirectly tells users to put the report content in 'message'. However, the 'context' parameter is entirely undocumented, and the description does not clarify how expected each parameter is in practice.
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 action verb ('report') followed by clear objects ('a bug, missing feature, or send feedback'), which distinctly conveys the tool's purpose. This clearly separates it from sibling tools like authenticate, connect, and marketplace, and even broadens the scope beyond a literal bug report.
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 statement 'Report a bug, missing feature, or send feedback' gives a clear context for when this tool is appropriate. It does not explicitly name exclusions or alternatives, but the sibling list makes those obvious; additionally it gives one practical usage instruction: include the conversation array for reproduction.
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 readOnly, idempotent, and non-destructive behavior. The description adds no additional behavioral context beyond these annotations, so no extra credit is warranted.
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 fully communicates the tool's purpose without fluff.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple version-check tool with no parameters and no output schema, the description sufficiently conveys what it does and what it returns. It lacks edge-case or error details, but these are not critical for this low-complexity 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?
There are no parameters, so schema coverage is 100%. The description adds no parameter details, but none are needed; baseline score of 3 applies.
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 shows current MCP platform and adapter versions, which is distinct from 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 when to use it (when version info is needed) but lacks explicit guidance on when not to use it or alternatives. It's a simple tool, so this is adequate but not explicit.
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, and the description does not contradict them. The description adds useful behavioral context by specifying what state aspects are returned, which is especially valuable given there is no output schema.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
A single, front-loaded sentence communicates exactly what the tool returns without filler or repetition. Every element in the list adds meaning.
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, the description fully covers the return contents and the overall purpose. No output schema exists, but the enumerated state fields provide sufficient context for an agent to decide when to call this 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 tool has zero parameters, so schema coverage is complete and there are no parameter semantics to clarify. A baseline of 4 is appropriate because the description correctly indicates no inputs are required.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb ('Returns') and resource ('toolkit state'), then enumerates the exact information included: installed MCPs, connection status, connected accounts, and catalog tool counts. This clearly distinguishes it from 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 clearly implies it should be used to inspect overall toolkit state, and the enumerated contents make the context obvious. It does not explicitly state when to use it over alternatives or mention exclusions, but no sibling tool overlaps with this general status-reporting role.
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 gradedqualityCmaintenanceConsulta o valor de mercado de veículos brasileiros na tabela FIPE a partir da placa ou chassi, com ferramenta somente leitura. Funciona via MCP over HTTP em qualquer cliente compatível.MIT
- AlicenseNot gradedqualityCmaintenanceEnables querying ANTT road freight transport operations by RNTRC and RENAVAM to confirm registration. Read-only MCP server that works with any MCP client over HTTP, with pay-per-use pricing.MIT
- -licenseNot gradedqualityCmaintenanceProvides read-only access to consult DETRAN DF vehicle information from official sources, with a single tool for mobile-based queries.
- AlicenseNot gradedqualityCmaintenanceMCP server that enables querying Brazilian vehicle data by plate, returning details like brand, model, year, and color. It is read-only, hosted, and works with any MCP client over HTTP.MIT