DETRAN DF: Débitos
Server Details
DETRAN DF: Debts, official-source lookup. Platform-hosted, pay per query with prepaid credit.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- mcp-dir/detran_df_debitos-mcp
- GitHub Stars
- 0
- Server Listing
- DETRAN DF: Débitos
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
Full call logging
Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.
Tool access control
Enable or disable individual tools per connector, so you decide what your agents can and cannot do.
Managed credentials
Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.
Usage analytics
See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.
Tool Definition Quality
Average 4.1/5 across 7 of 7 tools scored. Lowest: 2.9/5.
Each tool has a distinct purpose: authenticate handles token login, connect checks provider status, detran_df_debitos_consultar queries debts, marketplace searches/executes MCPs, report_bug sends feedback, show_version displays versions, and toolkit_info lists toolkit state. There is minor overlap between authenticate and connect (both deal with connection/auth) and between marketplace and toolkit_info (both involve MCP discovery), but the descriptions are clear enough to avoid major confusion.
All tool names are lowercase with underscores, but they do not follow a consistent pattern. Some are verbs (authenticate, connect, report_bug, show_version), some are nouns (marketplace, toolkit_info), and detran_df_debitos_consultar mixes a domain prefix with a verb at the end, using Portuguese rather than English. This inconsistency reduces predictability.
With 7 tools, the count is not extreme, but the scope is mismatched to the server's stated purpose ('DETRAN DF: Débitos'). Only one tool is actually related to DETRAN debts; the other six are generic platform utilities (authentication, marketplace, feedback, etc.). This feels like a general-purpose MCP platform server rather than a focused debt-consultation server, making the tool set inappropriate for the apparent domain.
For a server named 'Débidos', the only domain-specific operation is detran_df_debitos_consultar, which provides a single consultation action. There are no other debt-related operations such as listing, filtering, or paying debts, and the rest of the tools are unrelated to the domain. This is a severely incomplete surface for the stated purpose.
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 transparently explains side effects: initiating a browser login, accepting a token, or returning a link. It mentions the permanent non-expiring config option and acknowledges session-only behavior. Annotations (idempotent, non-destructive) align with the description, and no contradiction exists. The description adds valuable behavioral detail beyond the 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?
The description is moderately concise and front-loaded with the core purpose. It's structured into two usage modes, which is helpful. However, it includes some redundant phrasing (e.g., 'log in in the browser' vs. 'user pastes') that could be trimmed without losing clarity. Still, every sentence adds practical 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?
The description covers the essential flows (browser auth, token-based login, permanent config) but does not mention return values or session expiration. Given there is no output schema, the agent would benefit from knowing what to expect (e.g., a URL or success message). Slightly incomplete but adequate for a single-parameter auth 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?
With 0% schema description coveragechers the schema only defines 'token' as a string. The description fully compensates: it explains the token is a JWT to be pasted for session-only login, and that omitting arguments yields a login link. This is a complete semantic explanation of the parameter and its optionality.
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 an IDE agent to MCP.AI. It specifies the resource (MCP.AI) and the action (log in, obtain token, configure). It distinguishes itself by detailing the browser login flow and two methods (permanent header config vs. session token), making its function unambiguous relative to generic sibling names like '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?
It provides explicit usage patterns: can be called with a token for session-only login or with no args to get a login link. It also recommends the permanent header approach. However, it does not explicitly contrast with the sibling 'connect' or state when NOT to use this tool, so slightly below full marks.
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 indicate readOnly, idempotent, non-destructive behavior. The description adds valuable context about state-dependent responses (authenticated:true with empty pending[] vs connect_urls when credentials missing), which is not captured by annotations and aids the agent in understanding expected outputs.
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 primary purpose, and every phrase adds value. It efficiently covers both the happy path and the missing-credentials scenario 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 no output schema, the description explains the return values for both connection states, making it sufficiently complete for an agent to understand what this tool will do. It covers the key scenarios and does not leave critical gaps.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has zero parameters, so the baseline is 4. The description does not need to elaborate on parameter semantics, and it adds meaningful context about return values instead, which 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 'Returns connection status and URLs', a specific verb+resource that distinguishes this tool from siblings like 'authenticate' by focusing on status rather than action. It also explains the two major outcomes (authenticated vs missing credentials), making the 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 provides clear context: use this to check if all providers are connected and retrieve URLs when credentials are missing. It implies the use case but does not explicitly contrast with the 'authenticate' sibling tool or state when not to use it.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
detran_df_debitos_consultarARead-onlyIdempotentInspect
DETRAN DF: Débitos, 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 | ||
| login_cpf | No | ||
| login_senha | No | ||
| pkcs12_cert | No | ||
| pkcs12_pass | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate read-only, idempotent, non-destructive. Description adds that it is paid via pre-paid credits Hierarchical, and clarifies data custody and LGPD responsibilities, which are extra behavioral/contextual cues. However, it doesn't detail authentication specifics (like needing certain credentials) or potential errors, but given existing annotations, a 3 is fair.
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?
Description is a single, dense paragraph but concise (~400 characters) and front-loads the primary purpose. It includes necessary compliance and hosting issues. Each sentence has purpose: purpose, hosting/platform context, data source explanation, LGPD warning. No 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?
Complexity is moderate (6 params, of which 4 optional auth-related). Output schema missing, so description should cover expected return. It does not explain return format or error handling. But given annotations (read-only, idempotent), and that it's a standard query tool, the description is fairly complete for a casual user; yet it lacks param details. Thus a 3.
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 description must compensate. The description lists only hints that 'placa' and 'renavam' are likely vehicle identifiers but doesn't explain optional parameters like login_cpf, senha, or certificates. It does state the tool uses official source and payment, but that's not about parameter semantics. With zero schema coverage service, the description falls short of giving meaningful parameter guidance, earning a 3.
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 debts/charges from DETRAN DF, an official Brazilian source (verb 'consultar' = consult, resource='débitos' = debts). It distinguishes itself from siblings by specifying the official DETRAN DF scopeasia, but does not explicitly compare to other sibling tools, yielding a slight deduction.
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 implicitly tells when to use: for consulting debts from official Brazilian sources, with a note that it is not confidential data. It does not explicitly state when NOT to use or name alternative tools, but the context (official source) illuminates appropriate use. Sibling tools are mostly support/misc, so it's clear this is a data lookup.
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 adds rich behavioral detail beyond the annotations: it discloses side effects (install makes an MCP permanent; invoke may return connect/checkout links), permission requirements (writes require owner/admin), and the prompt library's non-login share behavior. It does not contradict 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 dense and front-loaded with the core flow; each sentence carries information about a distinct action or behavior. It could be better structured with bullets, but it earns its length for a 14-action tool.
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's complexity and absence of an output schema, the description covers the main flows and return behaviors, including invoke's auth/payment links and the prompt library. Some actions (search, subscribe/cancel) receive less detail, but overall it is sufficiently complete 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.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema has 0% description coverage for its 23 parameters, and the description compensates for the key ones by explaining the action-dependent workflow—e.g., 'describe returns one MCP's full profile ... you pick the right tool_id → invoke RUNS that tool'. It explains prompt_vars, prompt_slug, and tool_id semantics, though some params like immediate and tier_slug remain implicit.
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 identifies the tool as the official mcp.ai marketplace and execution engine, with specific verbs: 'search', 'describe', 'invoke', 'install', etc. It distinguishes from siblings by explaining its unique role as a catalog/runner, and even contrasts report_bug and request_mcp as alternative actions.
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 explicit decision guidance: 'prefer invoke for a single/occasional use' vs 'Use install only to make an MCP PERMANENT', and explains when to use search/describe. It also lists alternative actions for other intents (request_mcp, report_bug, subscribe/cancel), making when-to-use clear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
report_bugCIdempotentInspect
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 indicate readOnlyHint=false, destructiveHint=false, and idempotentHint=true. The description does not contradict these, but it adds minimal behavioral context: it mentions the action of reporting, which aligns with non-destructive, idempotent behavior. It doesn't disclose any side effects, rate limits, or what happens after reporting, so it adds some value but not much 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 short: one sentence that efficiently communicates the tool's main purpose and a key usage tip (include conversation). It is front-loaded with the action verb 'Report' and the object. No fluff, but it could be more structured if it listed parameters, hence not a 5.
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's medium complexity (3 params, no output schema, minimal annotations), the description is incomplete. It lacks parameter semantics, expected input formats (e.g., how to structure the conversation array), and any details about the response. The user/agent is left with insufficient guidance for correct invocation, especially since schema coverage is 0%. It covers basic purpose but not operational details.
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%, meaning the description provides no parameter documentation. The description mentions 'conversation array' but does not explain the other parameters (context, message) beyond what their names imply. With three parameters and zero coverage, the description must compensate but fails, leaving the agent to guess the purpose and format of 'context' and how 'conversation' should be structured (JSON string?).
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 purpose: to report a bug, missing feature, or send feedback. It identifies the primary resource (the system being used) and the action (report/send). While it distinguishes this from sibling tools (which are mostly unrelated operational tools), it doesn't explicitly name alternatives, so it's not a 5.
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 the user wants to report a bug or provide feedback. It gives a key hint about including the conversation for reproduction, which is important context. However, it doesn't explicitly say when NOT to use it or mention alternatives (e.g., for feature requests, use marketplace?), leaving some ambiguity. 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.
show_versionARead-onlyIdempotentInspect
Show the current MCP platform and adapter versions.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and idempotentHint=true, so the safety profile is covered. The description adds that it shows platform and adapter versions, but doesn't disclose any additional behavioral traits like network calls or potential errors. It doesn't contradict annotations, but doesn't add much beyond them.
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?
Single sentence, front-loaded, no filler. Exactly as concise as needed.
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 version info tool with no params and clear annotations, the description is sufficient. It states what it does. It doesn't specify output format, but that's minor.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has 0 parametershola, so baseline is 4. The description doesn't need to add parameter semantics because there are none.
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 action (show) and the resource (current MCP platform and adapter versions). It is specific and distinguishes this tool from siblings like connect or authenticate, which serve entirely different purposes.
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 doesn't mention when it's appropriate to call, nor does it exclude any situations. There is no mention of prerequisites or exclusions, leaving the agent without usage context beyond the name.
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 indicate readOnly, idempotent, and non-destructive behavior. The description adds transparency about what data is returned (installed MCPs, connection status, accounts, catalog tool counts), which goes beyond the annotation metadata.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single well-structured sentence that leads with the action and quickly enumerates the key return items within the same sentence. Every word contributes value with no repetition or 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 zero-parameter introspection tool with strong annotations, this description is fully adequate for an agent to understand what the tool returns and why it might be invoked. The absence of an output schema is offset by the plain-language enumeration of returned data categories.
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 and schema description coverage is 100% by default, so parameter semantics are not a burden on the description. The baseline for 0-parameter tools is 4, and the description does nothing to detract from that.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states it 'Returns the current toolkit state' and enumerates the specific contents: installed MCPs, connection status, connected accounts, and count of exposed catalog tools. This specific verb+resource combination clearly distinguishes it from the sibling tools like show_version 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 makes it evident that this tool is for obtaining an overview of the toolkit's current status, which implies use for checking connections or state before taking actions. But it does not explicitly state when-not-to-use or mention alternatives among the siblings.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Servers
- Alicense-qualityCmaintenanceEnables querying official tax debt certificates (Certidão de Dívida Ativa) from SEFAZ DF (Federal District Revenue) via a read-only MCP tool. Supports use with any MCP client over HTTP, with prepaid credits.MIT
- -license-qualityCmaintenanceProvides read-only access to consult DETRAN DF vehicle information from official sources, with a single tool for mobile-based queries.
- -license-qualityCmaintenanceMCP server to consult official DETRAN Ceará negative debt certificates by vehicle plate, read-only, paid per use.
- -license-qualityCmaintenanceHosted MCP server for querying official DETRAN BA vehicle information (single read-only tool) via HTTP, with prepaid per-use credits.
Your Connectors
Sign in to create a connector for this server.