DETRAN MS Guia Flex: Multas
Server Details
DETRAN MS Guia Flex: Multas, official-source lookup. Platform-hosted, pay per query with prepaid cre
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- mcp-dir/detran_ms_multas_flex-mcp
- GitHub Stars
- 0
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
Full call logging
Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.
Tool access control
Enable or disable individual tools per connector, so you decide what your agents can and cannot do.
Managed credentials
Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.
Usage analytics
See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.
Tool Definition Quality
Average 4.2/5 across 7 of 7 tools scored. Lowest: 3.2/5.
Each tool has a fairly clear role, but the boundaries blur around `authenticate`, `connect`, and `marketplace`: all three deal with credentials, connection status, and running platform tools. The single DETRAN query tool is unique, but an agent could hesitate between using it directly and using `marketplace` to invoke a similar paid/one-off tool.
Naming conventions are mixed: the domain tool is a long Portuguese snake_case verb (`detran_ms_multas_flex_consultar`), while several Spanish/English short verbs (`authenticate`, `connect`, `marketplace`) and compound nouns (`toolkit_info`, `show_version`) are used. There is no consistent verb_noun or naming pattern across the set.
Seven tools is not an unreasonable number, but six are generic platform and housekeeping operations rather than DETRAN-focused functionality. For a server advertised as a DETRAN MS fine tool, the set is heavily weighted away from the domain and feels imbalanced.
The only actual DETRAN capability is a single `consultar` operation, which may handle basic fine consultation but leaves no room for related domain needs such as vehicle/plate context, fine details, or payment/preparation flows. The `marketplace` tool is an escape hatch to external tools, not a coherent native DETRAN domain surface.
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 discloses key behavioral traits beyond annotations: it describes the interaction flow (opens browser, expects user to copy token), the two modes (permanent via config header vs session-only via token param), and the optional nature of the token parameter. The annotations indicate idempotentHint=true and readOnlyHint=false, and the description's emphasis on token-based login aligns with these cues.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, dense paragraph that is front-loaded with the most critical information (authentication flow) and then details the two options. Every sentence adds value: the opening identifies the target, the middle explains the permanent option, and the end covers the session-only variant. 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?
The tool is simple (one optional param, no output schema), and the description fully covers its behavior: what happens with no args, what happens with a token, and the recommended permanent setup. It also addresses prerequisites (browser login, copying token). The context signals show no complexity that requires additional disclosure.
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% for the single parameter 'token', so the description must compensate. It does so by explaining the token's purpose (JWT for session-only login) and how to obtain it ('paste it here for a session-only login'). It also clarifies that calling with no args returns a link, which is additional semantics beyond the bare schema. Slight deduction because the description doesn't specify the token's format precisely beyond 'jwt', but it's sufficient.
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: authenticate with MCP.AI for IDE agents. It specifies the verb 'authenticate', the resource (MCP.AI), and the target audience (IDE agents like Cursor). It distinguishes from siblings like 'connect' by detailing the authentication flow (browser login, token copy, config or session-only login).
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 usage guidance: it explains when to use this tool (for login), how to use it (login in browser, copy token, add to config or pass as token), and provides alternative options (permanent via config vs session-only via paste). It also implies when not to use it (when already authenticated permanently via config).
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, destructiveHint, and idempotentHint. The description adds context about output states (authenticated:true with empty pending vs connect_url), which enriches behavioral understanding 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.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two concise sentences cover the tool's purpose and behavioral variants without redundancy. Every clause adds meaningful information about return values and states.
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?
Despite having no output schema, the description fully explains the return values and their conditions. It covers the main scenarios (all providers connected vs missing credentials), making the tool's behavior complete for an agent.
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 correctly avoids any parameter explanation. Baseline for no params is 4, and since the description does not need to compensate for missing schema documentation, this score 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?
Description states it returns connection status and URLs, with specific details about the authenticated state and pending list. This clearly differentiates it from sibling 'authenticate' which likely performs the connection, making purpose 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 implies usage for checking connection status by describing its return behavior, but does not explicitly state when to use it versus alternatives like 'authenticate'. No when-not or alternative guidance is provided.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
detran_ms_multas_flex_consultarBRead-onlyIdempotentInspect
DETRAN MS Guia Flex: Multas, consulta em fonte oficial. Hospedado pela plataforma, sem credenciais da plataforma, pague por consulta com crédito pré-pago. Consulta informação de fontes e órgãos oficiais brasileiros (a mesma disponível ao cidadão), não é dado sigiloso. O cliente é o controlador dos dados e responde pela finalidade legítima (LGPD).
| Name | Required | Description | Default |
|---|---|---|---|
| placa | Yes | ||
| renavam | Yes | ||
| auto_infracao | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and destructiveHint=false. The description adds meaningful context about authentication (no platform credentials), payment (prepaid credit per query), data classification (not confidential), and LGPD compliance. This goes beyond annotations and helps the agent understand the operational and legal context.
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 ('Multas, consulta em fonte oficial') and is relatively concise. Each sentence adds some context, though the LGPD/data-controller sentence is more legal boilerplate than operational guidance.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With no output schema and no parameter descriptions, the description should provide more functional detail about what the query returns and how the optional auto_infracao parameter works. The payment and legal context is useful, but the core invocation/response behavior is under-specified for an agent.
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%, and the description does not explain any parameters (placa, renavam, auto_infracao) or their expected formats. Since the schema only provides names and types, the description leaves full burden unmet; the agent cannot know what values are valid or how they affect the query.
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 queries DETRAN MS fines from an official source, and the name includes 'consultar' (query). It distinguishes itself from sibling tools (authenticate, marketplace, etc.) as a data consultation service, though it doesn't explicitly state it returns fine details for plate/renavam.
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 context: it queries official Brazilian sources, requires no platform credentials, and is paid per query. However, it does not explicitly state when to use this tool versus alternatives or mention any exclusions/prerequisites beyond the payment model.
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 goes well beyond annotations, disclosing key behaviors: 'invoke works even when the MCP is NOT installed', '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', 'Writes (install/uninstall/subscribe/cancel ...) require workspace owner/admin', and the prompt shareable link 'opens without login'. These are critical runtime behaviors not captured by 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 long but appropriately structured for the tool's complexity: it starts with an overview, then explains the core flow, highlights key behaviors with 'KEY:', and separates MCP-related and prompt-library functionality. It earns its length, though some sentences could be tightened without losing value.
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 23 parameters, no output schema, and minimal annotations, the description is remarkably complete. It covers the search/describe/invoke/install lifecycle, authentication and payment fallbacks, permission requirements, prompt library operations, and billing actions. It provides enough context for an agent to decide how to use the tool correctly in most scenarios.
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 effectively compensates by explaining the meaning of the 'action' parameter values and their typical parameter usage (e.g., 'tool_id', 'arguments' implied in invoke, 'mcp_id' in describe). However, not all 23 parameters are explicitly defined (e.g., 'limit', 'immediate', 'tier_slug', 'prompt_vars'), though the core flow is well covered.
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 core function: 'the official mcp.ai marketplace — the in-platform catalog of every MCP/tool, AND the way to run them.' It explicitly covers the main actions (search, describe, invoke, install) and even includes the prompt library, making it unambiguous what this tool does.
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: 'Core flow: action=search discovers MCPs by intent → describe returns one MCP's full profile ... → invoke RUNS that tool.' It also gives clear when-to-use advice: 'prefer invoke for a single/occasional use' and 'Use install only to make an MCP PERMANENT'. Alternative actions within the tool (subscribe/cancel, report_bug, request_mcp) are described, and the prompt library usage is separated with its own flow.
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 provide idempotentHint=true and destructiveHint=false, which already signal a safe, repeatable operation. The description adds behavioral context by instructing to include the conversation array for reproduction, which is useful for understanding expected input and purpose. It does not contradict annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two short sentences, front-loaded with the core purpose and immediately followed by the key usage detail. Every word earns its place; no fluff 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?
The tool is simple with 3 params and no output schema, and annotations cover safety hints. The description gives essential purpose and one important parameter hint, but it could add more context about what happens after reporting (e.g., no response body, or that the message is sent to maintainers). Still, for a bug-report tool, this is passable.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description must compensate. It mentions the conversation array's role in reproduction but does not explain 'message' or 'context' beyond what the property names imply. The description adds some meaning but not enough to fully offset the lack of schema 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?
The description clearly states the tool reports a bug, missing feature, or feedback, and mentions including the conversation array for reproduction. This is a specific verb+resource pairing, though it doesn't strongly distinguish from siblings because sibling tools are unrelated (e.g., marketplace, authenticate), so differentiation isn't critical here.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies when to use the tool (when reporting issues/feedback) and gives a key usage detail (include conversation array). It does not explicitly state when not to use it or mention alternatives, but the context is reasonably clear given the sibling set.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
show_versionARead-onlyIdempotentInspect
Show the current MCP platform and adapter versions.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, idempotentHint, and destructiveHint, covering the safety profile. The description adds that it shows MCP platform and adapter versions but does not describe return format or any additional behavioral characteristics beyond what annotations convey.
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 of nine words, front-loaded with the verb and resource. There is no unnecessary information or repetition.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple zero-parameter, read-only version tool with no output schema, the description fully covers the purpose and scope. Annotations provide safety guarantees, so no additional context is needed 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?
There are zero parameters, and the schema already covers this completely. The baseline for 0 params is 4, and the description does not need to add anything about parameters since 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 states a specific verb ('Show') and resource ('current MCP platform and adapter versions'), making it obvious what the tool does. It clearly distinguishes itself from sibling tools like authenticate or marketplace, which serve very different functions.
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 when version information is needed, but it does not explicitly state when to use this tool versus alternatives or provide exclusions. For a trivial zero-parameter tool, this is acceptable but lacks explicit guidance.
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 readOnly=true, idempotent=true, destructive=false, so the safety profile is covered. The description adds context about what the state includes (installed MCPs, connections, accounts, tool counts), which clarifies the tool's scope. 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 description is a single sentence that front-loads the primary action ('Returns the current toolkit state') and efficiently lists the key elements after a colon. There is no wasted wording.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With no output schema, the description carries the burden of explaining return values, and it does so clearly by enumerating what the state includes. For a zero-parameter, read-only tool, this is sufficient and complete.
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_description_coverage is 100% trivially. Per rubric, 0 params = baseline 4; the description need not explain parameters, and it doesn't, so a 4 is appropriate.
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 the current toolkit state' and enumerates specific contents: installed MCPs, connection status, accounts, and catalog tool counts. This specific verb and resource scope distinguishes it from siblings like authenticate/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 this tool—whenever you need an overview of toolkit state—and the sibling names suggest other tools serve different actions. It does not explicitly name alternatives or exclusions, but the context is clear enough.
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
- -license-qualityCmaintenanceConsulta IPVA do Mato Grosso do Sul em fonte oficial, via servidor MCP hospedado com pagamento por uso (pré-pago) e integração com clientes como Claude, ChatGPT e Cursor.
- Alicense-qualityCmaintenanceProvides a read-only MCP tool to query IPVA (vehicle tax) information from the official Ceará state revenue service (SEFAZ) via prepaid credits.MIT
- Alicense-qualityCmaintenanceRead-only MCP server for consulting IPVA (vehicle property tax) data from the official SEFAZ GO source in Brazil, using prepaid credits and compatible with any MCP client.MIT
- Alicense-quality-maintenanceMCP server for consulting official SEFAZ MS DTE Caixa Postal data via a single tool, with prepaid usage.MIT