DETRAN AL: Infrações
Server Details
DETRAN AL: Traffic Fines, official-source lookup. Platform-hosted, pay per query with prepaid credit
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- mcp-dir/detran_al_infracoes-mcp
- GitHub Stars
- 0
- Server Listing
- DETRAN AL: Infrações
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
Full call logging
Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.
Tool access control
Enable or disable individual tools per connector, so you decide what your agents can and cannot do.
Managed credentials
Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.
Usage analytics
See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.
Tool Definition Quality
Average 4.3/5 across 7 of 7 tools scored.
Most tools are clearly distinct: authenticate handles login, connect shows status, detran_al_infracoes_consultar does domain queries, and the rest are platform utilities. Minor ambiguity exists between authenticate/connect and the marketplace's auth-related behavior, but descriptions largely resolve this.
Naming is highly inconsistent: English single-word names (connect, marketplace), snake_case Portuguese (detran_al_infracoes_consultar), and multi-word underscored mixes. There is no common verb-noun or language convention across the tool set.
Seven tools is a reasonable count, but only one relates to the server's stated domain (DETRAN AL infractions). The remaining six are generic platform functions (auth, marketplace, bug reports, version info) that feel out of place in a domain-specific server, making the set feel unfocused.
For the advertised domain of DETRAN AL infractions, there is a single consult operation and no other lifecycle or supporting tools. While the platform utilities are complete for their meta-purpose, the domain surface is severely limited and likely to cause dead ends for real infraction-related workflows.
Available Tools
7 toolsauthenticateAIdempotentInspect
MCP.AI for IDE agents (Cursor, etc.): log in in the browser, copy the access token. Best: add it to this server's config as a header Authorization: Bearer <token> for a permanent, non-expiring connection. Or paste it here for a session-only login: call with { token: "" } after the user pastes, or with no args to get the link.
| Name | Required | Description | Default |
|---|---|---|---|
| token | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations declare idempotentHint=true but not readOnlyHint, which implies mutation. The description adds that it triggers a browser login flow ('log in in the browser') and returns a link when called with no args, and that token login is 'session-only' vs 'permanent' via config. It does not state what the response looks like (link or success message), but the annotation set is minimal and the description covers the key behavioral contexts (login process, persistence).
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 sentences, but packed with essential guidance. The first sentence establishes purpose and audience. The second sentence explains the two usage modes with explicit call syntax. Slightly dense but no fluff; could be split into bullets, but it's efficient for an auth tool that needs to convey both browser flow and API usage.
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 login tool with 1 optional param, the description covers the core flow: browser login, token capture, config vs session options, and empty-call behavior. Missing details: what the response contains when returning the link, timeout behavior, or error handling, but given the low complexity and no output schema, this is adequate for an agent to initiate authentication. The 'permanent, non-expiring' note is a helpful extra.
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 has 1 optional parameter 'token' with 0% description coverage. The description explains the token's meaning ('<jwt>' pasted from browser) and its role in session vs permanent login. It explicitly says 'or with no args to get the link', which clarifies the optional nature. This adds meaning beyond the bare schema, though it doesn't detail token format beyond '<jwt>'.
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?
Purpose is clearly stated as 'log in' for MCP.AI, but the description actually says the tool's purpose is 'MCP.AI for IDE agents (Cursor, etc.). The description states it 'authenticate' is a clear verb+resource ('authenticate' with a 'for IDE agents' audience qualifier, plus 'token' parameter and 'no args to get the link'). The target audience 'IDE agents (Cursor, etc.)' distinguishes it from sibling tools like 'connect' or 'marketplace' which imply different resources.
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?
Explicitly provides two usage paths: 'add it to this server's config as a header... for a permanent, non-expiring connection' vs 'paste it here for a session-only login'. States the exact call patterns: 'call with { token: "<jwt>" }' or 'with no args to get the link'. Sibling tools are not mentioned, but the tool's role in the auth flow is clearly differentiated by the config vs session distinction.
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 mark it as read-only, idempotent, and non-destructive. The description adds valuable behavioral detail: it specifies exactly what returns in different states (authenticated:true with empty pending[] vs connect_url for toolkit and per-install URLs). This goes beyond annotations and helps predict output.
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 sentences, fully front-loaded with the main purpose, and each sentence provides necessary detail without fluff. Efficient and clear.
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 is complete for a zero-parameter tool with no output schema. It explains the two possible return scenarios, including the authenticated state and the missing-credentials state, which covers the main use cases. No further details seem necessary.
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 there is nothing to explain. According to the rubric, a zero-parameter tool gets a baseline of 4; the description doesn't need to elaborate on parameters.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Description clearly states the tool returns connection status and URLs, with specific output variations based on provider connection state. This distinguishes it from siblings like authenticate (which presumably initiates auth) and show_version (which shows version info), as it is focused on connectivity.
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 connection status and get URLs when credentials are missing. It doesn't explicitly mention when not to use it or compare with alternatives, but the purpose is obvious enough that an agent would know when to call it.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
detran_al_infracoes_consultarARead-onlyIdempotentInspect
DETRAN AL: Infrações, 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 |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false. The description adds valuable behavioral context: payment model (prepaid credit), lack of platform credentials, the official/non-confidential nature of the data, and LGPD responsibility for the client. This goes beyond the annotations by explaining operational and legal aspects.
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 compact 4-sentence paragraph, front-loaded with the main purpose and followed by relevant operational and legal context. Each sentence earns its place, covering the query, hosting, payment, data source, and LGPD without unnecessary verbosity.
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 provides good context about the source, payment, and legal aspects, but it does not describe what the query returns (e.g., a list of violations with details). With no output schema present, the description should clarify return values, but it remains implicit. This is a notable gap for a complete understanding of the 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?
Schema description coverage is 0%, so the description must compensate for parameter semantics. The description does not mention 'placa' or 'renavam' at all, providing no additional meaning beyond the schema. The parameter names are somewhat self-explanatory in the Brazilian context, but the description adds zero value for parameter understanding.
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: 'DETRAN AL: Infrações, consulta em fonte oficial' – querying traffic violations from the official DETRAN AL source. The verb 'consultar' and resource 'infrações' are specific, and the tool is clearly distinguished from sibling tools (authenticate, connect, etc.) which are generic platform operations.
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 usage context: it is hosted by the platform, requires no platform credentials, and is paid per query with prepaid credit. It also clarifies that the data source is the same as available to citizens, which implies when it should be used. No explicit alternatives are mentioned, but no domain-specific alternatives exist among the sibling tools.
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 substantial behavior beyond annotations. It discloses that 'invoke works even when the MCP is NOT installed' and runs a 'one-off' without bloating the toolkit, details credential/payment edge cases ('invoke returns a connect link' / 'checkout/top-up link'), and states that writes require 'workspace owner/admin.' This supplements readOnlyHint=false with critical operational expectations.
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 dense but front-loaded block that opens with a clear one-sentence summary. It packs a lot of essential information without filler, though it could be improved with structured bullets or section headers for readability. No sentence is wasted.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a tool with 14 action values, 23 parameters, billing/auth concerns, and a separate prompt library, the description is remarkably complete. It covers the core flow, exception handling, permission requirements, one-off vs permanent install differences, and all major action categories. The only gap is parameter-level detail, but the high-level guidance is sufficient for an agent to invoke the tool correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema has 23 parameters with 0% description coverage. The description explains the core `action` parameter values and the high-level workflow, including how tool_id is selected and how prompt_vars are 'filled' for get_prompt. However, it does not describe many other parameters such as `limit`, `immediate`, `tier_slug`, `cancel_reason`, `prompt_category`, etc., so the added meaning is partial rather than comprehensive.
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 — the in-platform catalog of every MCP/tool, AND the way to run them.' It enumerates specific actions (search, describe, invoke, install, subscribe) and distinguishes the prompt library as a separate facet. This establishes a precise scope and differentiates it from sibling tools like toolkit_info and report_bug.
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 an explicit 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 guidance, including 'prefer invoke for a single/occasional use' and 'Use install only to make an MCP PERMANENT.' It differentiates list_tools ('lists what is callable right now') and request_mcp ('when nothing fits'), offering clear alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
report_bugAIdempotentInspect
Report a bug, missing feature, or send feedback. Include the conversation array with recent messages for reproduction.
| Name | Required | Description | Default |
|---|---|---|---|
| context | No | ||
| message | Yes | ||
| conversation | No | [] |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already convey the safety profile (not read-only, not destructive, idempotent). The description adds useful guidance by instructing to include the conversation array for reproduction, which implies the report will be used for debugging. However, it does not disclose what happens after submission (e.g., where the report goes, expected response), and it does not explain the idempotent hint, so some behavioral ambiguity remains.
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, front-loaded sentence that states the purpose and immediately gives the key usage instruction. Every word earns its place, and there is no wasted verbiage.
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 three string parameters and no output schema. The description covers the purpose and one parameter (conversation) but omits details about the 'message' and 'context' parameters, and it misrepresents the conversation field as an array rather than a JSON string. This is adequate but not fully complete for an agent to invoke it correctly without additional assumptions.
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 by explaining parameters. It explicitly mentions 'conversation array' and indirectly alludes to 'message' via 'send feedback,' but the 'context' parameter is entirely unexplained. Moreover, it calls 'conversation' an array while the schema expects a string, which could mislead users. This leaves significant gaps in parameter understanding.
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: 'Report a bug, missing feature, or send feedback.' The verb 'report' and direct listing of report types distinguish it from sibling tools like authenticate or show_version, making its role immediately understood.
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: any time the user needs to submit a bug report, feature request, or general feedback. It does not explicitly mention alternatives or exclusions, but the context is unambiguous and no other sibling tool serves the feedback purpose.
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, idempotentHint=true, and destructiveHint=false, so the safety profile is covered. The description adds value by specifying exactly what information is shown (platform and adapter versions), which is useful context beyond the annotations. It fully discloses the behavior without contradiction.
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, clear sentence that conveys the entire purpose without any fluff. It is front-loaded and every word earns its place. Perfectly concise for a simple 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?
For a trivial read-only version tool with no parameters, no output schema, and comprehensive annotations, the description is complete. It tells the agent what the tool does (shows versions) and nothing else is needed. The description is fully adequate for the tool's simplicity.
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 coverage is 100%. The description does not need to explain parameter meanings since there are none. The baseline of 4 applies because the description adds no parameter information, but none is needed.
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 exactly what the tool does: 'Show the current MCP platform and adapter versions.' The verb 'show' is specific, the resource (platform and adapter versions) is clear, and it is distinct from siblings like authenticate or connect which have 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 explicit guidance on when to use this tool versus alternatives. Given the simplicity and the sibling 'toolkit_info' which might also provide version-related information, the description does not clarify the differentiation or when not to use it. The usage context is implied but not stated.
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?
The annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, covering the safety profile. The description adds context about the output composition (installed MCPs, status, accounts, tool counts) but does not provide extras like auth needs, rate limits, or error conditions. This is adequate given the bar is lower with annotations present.
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, front-loaded sentence that efficiently enumerates exactly what the tool returns, with no filler or redundant wording. Every clause provides value, and the structure is clean.
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 tool with no output schema, the description covers all relevant aspects: it states the purpose and the four types of information returned. It does not specify exact output format or potential edge cases (e.g., empty list of MCPs), but given the simplicity and annotations, it is sufficiently 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 there is nothing to describe. Schema description coverage is 100% trivially. Since no parameters exist, the baseline score of 4 applies; the description appropriately focuses on the output rather than parametric details.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb ('Returns') and clearly identifies the resource ('current toolkit state') with four concrete components: installed MCPs, connection status, connected accounts, and number of catalog tools. This fully distinguishes the tool from siblings like 'connect' or 'authenticate' which are action-oriented, and 'show_version' which targets only a version.
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 indicates when to use the tool (to inspect toolkit state) but does not explicitly contrast with alternatives. While sibling 'show_version' might also be a read-only info tool, there is no explicit guidance on choosing between them or when not to use this tool. The context is clear but lacks stated exclusions or alternative mentions.
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-qualityCmaintenanceEnables querying vehicle licensing information from DETRAN AL (Alagoas, Brazil) via an official read-only MCP tool, with pay-per-use credit system and no credentials required.
- Alicense-qualityCmaintenanceEnables querying DETRAN Ceará traffic fine issuance data from official sources via a read-only MCP tool, with pay-per-use prepaid credits and magic-link login.MIT
- Alicense-qualityCmaintenanceRead-only MCP server for querying official DETRAN AL Renajud data, hosted with pay-per-use credits and no platform credentials required.MIT
- Alicense-qualityCmaintenanceConsulta veicular em fonte oficial do DETRAN/AL via MCP, servidor hospedado sem credenciais, pré-pago por consulta, funciona com qualquer cliente MCP.MIT
Your Connectors
Sign in to create a connector for this server.