Skip to main content
Glama

DETRAN RJ: Nada Consta - Veículo Apreendido

Server Details

DETRAN RJ: Clearance Certificate - Vehicle Apreendido, official-source lookup. Platform-hosted, pay

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL
Repository
mcp-dir/detran_rj_veiculo_apreendido-mcp
GitHub Stars
0

Glama MCP Gateway

Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.

MCP client
Glama
MCP server

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.

100% free. Your data is private.
Tool DescriptionsA

Average 4/5 across 7 of 7 tools scored. Lowest: 3.1/5.

Server CoherenceC
Disambiguation3/5

The tools have distinct purposes: authenticate and connect handle auth/connection, detran_rj_veiculo_apreendido_consultar is the core data query, marketplace is a meta-tool for discovering/executing other MCPs, while report_bug, show_version, and toolkit_info are system-level utilities. However, there is some overlap between authenticate and connect (both deal with connection setup) and between detran_rj_veiculo_apreendido_consultar and marketplace (both can execute queries, but marketplace is more general). The descriptions are detailed, but the mix of platform-level and domain-level tools could confuse an agent about which to call for a given task.

Naming Consistency2/5

Naming is highly inconsistent. Some tools use generic English verbs (authenticate, connect, report_bug, show_version, toolkit_info), while the main domain tool uses Portuguese 'detran_rj_veiculo_apreendido_consultar' which follows a different pattern. There is no consistent verb_noun or resource_action convention across the set. The mix of English and Portuguese, plus the long domain name, creates a chaotic feel.

Tool Count3/5

At 7 tools, the count is on the lower end of reasonable, but several tools (report_bug, show_version, toolkit_info) are generic platform utilities that don't directly serve the server's stated purpose of querying DETRAN RJ vehicle seizure info. The server seems to bundle a specific data lookup with general MCP platform management, making the scope feel a bit bloated for such a narrow domain. Still, it's not extreme.

Completeness3/5

For the apparent domain—querying DETRAN RJ 'Nada Consta' for seized vehicles—the surface is limited to a single consult operation. There's no authentication-specific tool for the DETRAN provider (though authenticate covers it), no batch query, no history, or other CRUD operations. Given that the server is mostly a single-purpose data access with platform boilerplate, the coverage is minimal but arguably sufficient for a query-only use case. The lack of query parameters or additional related operations is a minor gap.

Available Tools

7 tools
authenticateA
Idempotent
Inspect

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
tokenNo
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations provide idempotentHint=true, indicating calling with no args returns a link (non-mutating). The description adds context about permanent vs session-only tokens and the token payload, which is helpful. However, it doesn't disclose what happens after authentication (e.g., response format, whether it persists state), but the annotations already cover the key idempotency trait, so this is acceptable.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two sentences, front-loaded with the target audience and main action, then explains two usage paths. It's concise but slightly dense with parenthetical details; still, every part earns its place and it's easy to scan.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The tool is simple with one optional parameter, and the description covers the auth flow fully: how to get token, permanent config, session pass, and no-args behavior. It lacks a return-value description but there's no output schema, and the context is sufficient for an agent to invoke correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 0%, so the description must compensate. The description explains the 'token' parameter as an optional JWT for session-only login, but it doesn't detail the format or behavior when omitted beyond 'get the link'. This is sufficient for a single optional parameter, but it could be more explicit about the token's structure.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

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 users for MCP.AI, providing login instructions and supporting both permanent (config header) and session-only (token) authentication. It distinguishes itself from siblings by focusing on the authentication flow for IDE agents, though it doesn't explicitly compare to the 'connect' sibling.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides explicit usage guidance: it tells the agent to log in via browser, copy the token, and either add it to the server config for permanent access or pass it as a parameter for session-only login. It also gives the no-args option to get the link, covering all call variants clearly.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

connectA
Read-onlyIdempotent
Inspect

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.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint, idempotentHint, and destructiveHint, so the safety profile is covered. The description adds meaningful behavioral context by specifying the two output states (all connected vs missing credentials), which goes beyond what annotations provide.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two sentences, front-loaded with the core purpose, and every clause adds useful conditional detail. No wasted words or redundant restatement of the tool name.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple parameterless status tool with strong annotations, the description covers the key return variants and connection states. It does not explain partial connection scenarios, but the two stated conditions are likely sufficient for most agent decisions.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The tool has zero parameters and 100% schema description coverage, so there is nothing for the description to add about parameters. Baseline 4 is appropriate for a parameterless tool.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

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, with specific conditional outcomes (authenticated:true and empty pending[] vs connect_url). This is a specific verb+resource that distinguishes it from the sibling authenticate tool, which likely performs the actual authentication flow.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies when to use the tool by describing its conditional behavior, but it does not explicitly state when to use it versus alternatives like authenticate. It explains what happens when credentials are missing but does not direct the agent to a follow-up action.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

detran_rj_veiculo_apreendido_consultarB
Read-onlyIdempotent
Inspect

DETRAN RJ: Nada Consta - Veículo Apreendido, 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).

ParametersJSON Schema
NameRequiredDescriptionDefault
cpfNo
cnpjNo
placaYes
chassiYes
renavamYes
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations provide readOnlyHint, idempotentHint, and destructiveHint, which cover the safety profile. Description adds that it's a paid per-query service with credit, hosted by the platform, and that the client controls data under LGPD. This adds useful behavioral context about payment and legal responsibility, though it doesn't describe the exact output format or error behaviors. 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.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single paragraph with no wasted words. It is concise but packs essential context: the official source, the payment model, the data nature, and LGPD responsibilities. It could be slightly improved by separating the core function from the commercial/legal caveats, but it remains efficient.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The tool has no output schema and moderate complexity with 5 parameters (3 required). The description covers the administrative context but leaves the query behavior and parameter specifics unaddressed. Since there is no output schema, the description should at least hint at what the response contains (e.g., status). The description is incomplete for an agent to effectively invoke the tool with correct input formats.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema covers 5 parameters, but description provides zero parameter details. The schema itself only lists names and types, with no descriptions. The description does not clarify the roles of each parameter (e.g., what format placa, chassi, renavam should take, or when to use cpf/cnpj vs placa). Given 0% schema description coverage, the description fails to compensate, making parameter usage ambiguous.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

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 query DETRAN RJ for vehicle seizure status ('Nada Consta' check). It mentions the official source and the data type (non-confidential citizen-available data). It distinguishes from siblings by being a specific DETRAN RJ vehicle query tool, though it doesn't explicitly contrast with other potential vehicle tools.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage context (prequalified credit, per-query payment, client responsible for LGPD compliance) but does not explicitly state when to use this tool vs alternatives. It mentions the payment model and data responsibility, which suggests the commercial use case, but lacks explicit alternatives or exclusions.

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNo
queryNo
actionNosearch
mcp_idNo
messageNo
tool_idNo
argumentsNo{}
immediateNo
tier_slugNo
prompt_bodyNo
prompt_slugNo
prompt_toolNo
prompt_varsNo{}
conversationNo[]
prompt_titleNo
request_nameNo
cancel_reasonNo
cancel_commentNo
prompt_targetsNo
report_contextNo
prompt_categoryNo
request_detailsNo
prompt_descriptionNo
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations only indicate not read-only, open world, not idempotent, not destructive, but the description adds critical context: invoke runs one-off even if not installed, returns connect/checkout links on auth/payment barriers, writes require owner/admin, and prompt library behavior. This goes well beyond annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a dense single paragraph with many sentences, but each sentence adds unique value. It is front-loaded with the core purpose and flow, though it could be structured with line breaks for readability. Not wasteful, but slightly long.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a highly complex tool with 23 params and no output schema, the description covers the main workflows, permissions, auth/payment edge cases, and the prompt library. It does not describe exact return schemas for each action, but it provides enough context for an agent to select and invoke actions correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 0% with 23 parameters, and the description provides a conceptual map of the action enum and key workflow parameters (mcp_id, tool_id, arguments) but does not explain most parameters like limit, query, prompt_vars, conversation, or the exact JSON format of arguments. It compensates partially through the flow but leaves many parameters underspecified.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

Description clearly identifies the tool as the mcp.ai marketplace and the way to run MCPs, with explicit verbs: search, describe, invoke, install. It distinguishes from siblings by covering the full lifecycle and prompt library.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Provides explicit guidance: 'prefer invoke for a single/occasional use', 'Use install only to make an MCP PERMANENT', and differentiates subscribe/cancel, report_bug, request_mcp, list_tools. This tells the agent when to choose this tool vs alternatives.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

report_bugA
Idempotent
Inspect

Report a bug, missing feature, or send feedback. Include the conversation array with recent messages for reproduction.

ParametersJSON Schema
NameRequiredDescriptionDefault
contextNo
messageYes
conversationNo[]
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already cover safety (readOnly=false, idempotent=true, destructive=false). The description adds the requirement to include conversation for reproduction but doesn't disclose additional behavioral aspects. No contradiction.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two sentences: first states purpose, second gives usage instruction. No fluff, perfectly front-loaded.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the simplicity (3 params, no output schema), the description covers the main purpose and hints at important usage (conversation), but lacks parameter definitions. Annotations help, but completeness is moderate.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 0%, so the description must compensate. It only explains the conversation parameter ('recent messages for reproduction'), leaving message and context undefined. This is insufficient compensation.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states it reports bugs, missing features, or feedback, using a specific verb and resource. This distinguishes it from unrelated siblings 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.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The context is clear for when to use the tool (reporting issues), but it lacks explicit exclusions or alternative tool references. The instruction to include the conversation array provides clear context.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

show_versionA
Read-onlyIdempotent
Inspect

Show the current MCP platform and adapter versions.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already indicate read-only, idempotent, and non-destructive behavior. The description adds no extra behavioral details beyond what annotations provide, so it remains at the baseline for tools 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.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single concise sentence with no unnecessary words or redundancy, making it highly efficient and well-structured.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

As a simple information-retrieval tool with no output schema, the description fully conveys its purpose. No additional context about return values or side effects is needed.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

There are no parameters defined, and the description correctly omits any mention. With zero parameters, the baseline is 4, and the description does not need to elaborate further.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the exact function: showing the current MCP platform and adapter versions. It is specific and unambiguous, distinguishing it from other 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.

Usage Guidelines4/5

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 this tool (when version information is needed) and implicitly differentiates it from other operations, though it lacks explicit alternatives or exclusions.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

toolkit_infoA
Read-onlyIdempotent
Inspect

Returns the current toolkit state: installed MCPs, their connection status, the accounts connected to each one, and how many catalog tools each exposes.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already signal readOnly, idempotent, and non-destructive behavior, and the description adds useful return-value context—the nature of the reported state and the specific fields included. This matches the annotations and provides more detail than structured metadata alone.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single sentence, front-loads the action and object, and uses a concise enumerative structure for the returned state. Every phrase contributes meaningful information without repetition or unnecessary detail.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a parameterless, read-only status tool without an output schema, the description is complete by specifying what the edges will contain: installed MCPs, connection status, connected accounts, and catalog tool counts. It gives an agent sufficient information to decide whether and when to call the tool.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema has zero parameters and is empty, so the baseline is 4; schema coverage is effectively 100%. The description does not need to document parameters because there are none to document.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb ('Returns') and names the precise resource ('current toolkit state'), then enumerates the contents: installed MCPs, connection status, accounts connected, and catalog tool counts. This clearly distinguishes it from sibling actions such as authenticate, connect, and report_bug, which perform different operations.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description makes it obvious that this is the read-only status query for overviewing toolkit connectivity and accounts, especially in contrast to mutating siblings like connect and authenticate. It does not explicitly state alternative or exclusion conditions, but the context is clear enough for an agent to select it appropriately.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Discussions

No comments yet. Be the first to start the discussion!

Related MCP Servers

  • A
    license
    -
    quality
    C
    maintenance
    Provides a read-only MCP tool to query IPVA (vehicle tax) information from the official Ceará state revenue service (SEFAZ) via prepaid credits.
    MIT

View all MCP Servers

Try in Browser

Your Connectors

Sign in to create a connector for this server.