Skip to main content
Glama

DETRAN MA: Multas

Server Details

DETRAN MA: Multas, official-source lookup. Platform-hosted, pay per query with prepaid credit.

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

Glama MCP Gateway

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

MCP client
Glama
MCP server

Full call logging

Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.

Tool access control

Enable or disable individual tools per connector, so you decide what your agents can and cannot do.

Managed credentials

Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.

Usage analytics

See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.

100% free. Your data is private.
Tool DescriptionsA

Average 4.2/5 across 7 of 7 tools scored.

Server CoherenceC
Disambiguation4/5

Most tools have clear, distinct purposes: authentication, status check, quota query, marketplace discovery, bug reporting, version display, and toolkit overview. Only minor overlap exists between 'connect' and 'toolkit_info' in terms of connection status reporting, but each has a distinct primary function.

Naming Consistency2/5

Naming is inconsistent: 'authenticate', 'connect', 'marketplace', 'report_bug', 'show_version', 'toolkit_info' use camelCase, while 'detran_ma_multas_consultar' is snake_case. Verbs vary (authenticate, connect, report, show) with some noun-only names (marketplace, toolkit_info), undermining a predictable pattern.

Tool Count3/5

Seven tools is a reasonable number, but the server's stated identity as 'DETRAN MA: Multas' clashes with the inclusion of six platform-level meta-tools and only one domain-specific tool. The count is appropriate for a generic platform server, but it feels excessive for the nominal domain focus.

Completeness2/5

For the domain of Brazilian traffic fines (DETRAN MA), only a single consult tool exists, with no support for updates, deletions, or listing distinct fine types. While platform tools cover meta-operations, the domain surface is severely underdeveloped given the server's name and purported purpose.

Available Tools

7 tools
authenticateA
Idempotent
Inspect

MCP.AI for IDE agents (Cursor, etc.): log in in the browser, copy the access token. Best: add it to this server's config as a header Authorization: Bearer <token> for a permanent, non-expiring connection. Or paste it here for a session-only login: call with { token: "" } after the user pastes, or with no args to get the link.

ParametersJSON Schema
NameRequiredDescriptionDefault
tokenNo
Behavior4/5

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

The description discloses that the config approach creates a 'permanent, non-expiring connection' while pasting a token gives a 'session-only login', adding behavioral context beyond the annotations. It does not explicitly cover error handling or token management, but it covers the main outcomes.

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

Conciseness4/5

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

The description is reasonably concise but packs a lot into a single run-on sentence with colons and commas. It is front-loaded with the tool's purpose and avoids unnecessary words, though it could be broken into clearer sentences.

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

Completeness4/5

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

For a simple auth tool with one optional parameter and no output schema, the description covers the main scenarios (permanent config, session token, and obtaining a link). It implies the response contains a link but does not detail error cases or return structure, which is acceptable given the tool's simplicity.

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

Parameters5/5

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

Despite 0% schema description coverage, the description fully explains the 'token' parameter as a JWT to paste, and the no-argument call to retrieve the link. This goes beyond the bare schema and clearly instructs how to invoke both modes.

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

Purpose5/5

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

The description clearly states the tool is for authenticating IDE agents (Cursor, etc.) by logging in via browser and copying an access token. It specifies the action (authenticate), the resource (this server's config), and distinguishes itself from siblings like 'connect' by describing the auth flow.

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

Usage Guidelines5/5

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

It explicitly describes when to use the config header approach for a permanent connection vs. pasting a token for session-only login, and mentions calling with no args for a link. This provides clear alternatives and when to use each, meeting the 'when/when-not' criterion.

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

connectA
Read-onlyIdempotent
Inspect

Returns connection status and URLs. When all providers are connected, returns authenticated:true and empty pending[]. When credentials are missing, returns connect_url for the toolkit and per-install URLs.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Behavior4/5

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

Annotations already declare readOnlyHint, idempotentHint, and destructiveHint, reducing the burden. The description adds valuable context about the return values (authenticated, pending, connect_url) and explains conditional behavior based on credential presence, which goes beyond the annotation metadata and helps the agent predict outcomes.

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

Conciseness5/5

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

The description is two succinct sentences that front-load the main purpose ('Returns connection status and URLs') and then briefly explain the two possible outcomes. There is no verbosity or redundancy, and every sentence adds meaningful information.

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

Completeness4/5

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

Given the tool is simple with no parameters and no output schema, the description adequately explains the two main states (all connected vs. missing credentials) and what fields are returned. It does not cover partial connection states, but this may be outside the tool's scope. Overall, it provides enough detail for an agent to understand the tool's behavior.

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

Parameters4/5

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

Since there are zero parameters, the schema trivially covers all (100% coverage). The baseline for 0 parameters is 4, and the description correctly omits any parameter details because none exist, so no additional semantic info is needed.

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

Purpose5/5

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

The description clearly states the tool returns connection status and URLs, with specific details about output when all providers are connected vs. when credentials are missing. This distinguishes it from siblings like 'authenticate' which handles authentication rather than status.

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

Usage Guidelines3/5

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

The description provides clear context for when the status is expected (all connected vs. missing credentials) but does not explicitly mention alternatives or when not to use this tool. It implies usage for checking connection status but lacks explicit 'use this instead of X' guidance for sibling tools like authenticate.

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

detran_ma_multas_consultarA
Read-onlyIdempotent
Inspect

DETRAN MA: 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).

ParametersJSON Schema
NameRequiredDescriptionDefault
placaYes
renavamYes
Behavior4/5

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

The annotations already cover readOnlyHint, idempotentHint, and destructiveHint, so the description adds complementary context: the tool is hosted by the platform, no platform credentials, payment per query, and relevant data privacy legal statements (LGPD). It does not add any misleading or contradictory behavior details.

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

Conciseness4/5

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

The description starts with the concise purpose, then adds necessary operational, financial, and legal details. It is not bloated, but repeated references to 'official sources' and LGPD have slight redundancy. Overall, each sentence conveys important context for a paid Brazilian data-consultation tool.

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

Completeness3/5

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

Given the tool is very simple (two parameters, no output schema), the description covers the main intent, payment model, and legal conditions. However, it lacks details about output format, any notification of missing results, or possible failure states such as invalid placa or renavam. The completeness is a moderate baseline with clear gaps.

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

Parameters2/5

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

Schema coverage is 0%: descriptions are absent for placa and renavam. The description does not mention or explain these parameters, discuss formats, or provide examples. It expects the agent to infer that placa is the license plate and renavam is the Brazilian vehicle registration number; this ad hoc knowledge is implicit and not supported by the tool description.

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

Purpose5/5

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

The description explicitly states the action: consultar multas (query fines) from a specific resource: DETRAN MA, an official source. It uses a specific verb and resource, and clearly differentiates from the sibling tools like authenticate, marketplace, and report_bug by describing a niche municipal/government data-lookup service.

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

Usage Guidelines4/5

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

It gives useful context for when to use this tool: for consulting official Brazilian traffic fines, paying via prepaid credit, and with no platform credentials required. It does not definitively contrast with alternatives, because none of the sibling tools offer a comparable consultancy, so it is more clear context than optional exclusions.

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

marketplaceAInspect

The official mcp.ai marketplace — the in-platform catalog of every MCP/tool, AND the way to run them. Covers capability requests like "find an MCP that does X", "consulta um CPF", "is there a tool for Y". Core flow: action=search discovers MCPs by intent → describe returns one MCP's full profile (every tool with its id + params, pricing, auth) so you pick the right tool_id → invoke RUNS that tool. KEY: invoke works even when the MCP is NOT installed — it runs the tool pontualmente (one-off), without adding the MCP to the toolkit and without bloating the tool list. If the MCP needs a credential/login, invoke returns a connect link; if it is paid and the wallet is empty, invoke returns a checkout/top-up link (the user opens it, then you retry). Use install only to make an MCP PERMANENT in the active toolkit (its tools then show up natively in future sessions); prefer invoke for a single/occasional use. list_tools lists what is callable right now. subscribe/cancel handle per-MCP billing; report_bug sends feedback; request_mcp asks us to build a NEW MCP when nothing fits. Search/describe flag installed_in_toolkit vs installed_in_workspace. Writes (install/uninstall/subscribe/cancel and the one-off install behind invoke) require workspace owner/admin. It also carries the mcp.ai PROMPT LIBRARY, which is about ready-made prompt TEXT rather than MCPs: search_prompts finds one, get_prompt returns its full text with {{variables}} filled, and publish_prompt saves a prompt and returns a shareable mcp.ai/p/ link that opens without login.

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

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

The description discloses important behaviors not covered by annotations: writes require owner/admin, invoke works even if MCP isn't installed, returns connect or checkout links when credentials or payment are needed, and distinguishes installed_in_toolkit vs installed_in_workspace. It doesn't mention rate limits or error details, but annotations already signal non-read-only and non-idempotent behavior, so the description adds meaningful context 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.

Conciseness4/5

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

The description is long but every sentence adds value, covering the core flow, key actions, and permission requirements. It is front-loaded with a clear definition and the flow, though it is a dense paragraph that could benefit from structured bullets. Given the tool's complexity, the length is justified and not wasteful.

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

Completeness4/5

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

The description covers all major workflows: searching, describing, invoking, installing, billing management, bug reporting, and prompt library actions. It gives enough behavioral context for the agent to act, though it doesn't document all parameters or exact output shapes (no output schema exists). For such a complex tool, it is reasonably complete.

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

Parameters3/5

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

The schema has 0% parameter descriptions, so the description bears the full burden. It explains the main parameters indirectly through action descriptions (query, mcp_id, tool_id, arguments, prompt_* ), but leaves many parameters like limit, immediate, tier_slug, conversation, report_context, and request_details undocumented. This is a partial compensation, not full.

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

Purpose5/5

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

The description clearly states this is the official mcp.ai marketplace for discovering and running MCPs, and also hosts a prompt library. It uses specific verbs like 'search', 'describe', 'invoke' and 'install', and distinguishes it from siblings by being the central in-platform catalog and execution layer.

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

Usage Guidelines5/5

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

The description provides explicit when-to-use guidance for each action: prefer invoke for one-off use, install for permanent addition, list_tools for currently callable tools, subscribe/cancel for billing, report_bug for feedback, request_mcp for new MCPs, etc. It also explains the search→describe→invoke core flow, making it clear when to use this tool over alternatives.

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

report_bugA
Idempotent
Inspect

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

ParametersJSON Schema
NameRequiredDescriptionDefault
contextNo
messageYes
conversationNo[]
Behavior4/5

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

Annotations declare idempotentHint=true and destructiveHint=false, which the description does not contradict. The description adds context by requiring the conversation array with recent messages for reproduction, which is useful behavioral information 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.

Conciseness5/5

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

The description is two sentences, front-loaded with the purpose and then a specific usage directive. Every word earns its place with no redundancy.

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

Completeness4/5

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

For a simple bug-reporting tool with one required parameter, the description covers the purpose and a key usage requirement. There is no output schema, so return values need not be explained, though a note on what happens after submission would add completeness.

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

Parameters3/5

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

Schema coverage is 0%, so the description must compensate. It explains the 'conversation' parameter as 'recent messages for reproduction' and implicitly describes 'message' as the bug/feedback text. However, the 'context' parameter is not mentioned, leaving a gap.

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

Purpose5/5

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

The description uses the specific verb 'Report' and names the resources: bug, missing feature, or feedback. It is clearly distinct from sibling tools like authenticate, connect, and marketplace.

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

Usage Guidelines3/5

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

The purpose implies when to use it, but there is no explicit guidance about when not to use it or alternatives. The description states what the tool does but does not provide exclusions or comparisons.

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

show_versionA
Read-onlyIdempotent
Inspect

Show the current MCP platform and adapter versions.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Behavior3/5

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

Annotations already declare this as read-only (readOnlyHint=true) and idempotent (idempotentHint=true). The description adds that it returns version information, which is consistent but does not disclose additional behavioral traits (e.g., exact return format, potential delays). It adds modest value 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.

Conciseness5/5

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

The description is a single, clear sentence that front-loads the action and object. There is no wasted verbosity; every word contributes to understanding.

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

Completeness4/5

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

For a simple zero-parameter, read-only tool with annotations covering safety and idempotence, the description is sufficient. It clearly states what is shown, though it does not mention output format or any side effects (which are none). It could note that it returns a version string, but it is not necessary for basic use.

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

Parameters4/5

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

With zero parameters, the baseline is 4. The description does not need to describe parameters, and no parameters exist to add meaning for. The description accurately conveys the sole purpose.

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

Purpose4/5

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

The description states a specific verb ('Show') and resource ('current MCP platform and adapter versions'), which clearly identifies the tool's purpose. It distinguishes itself from a potential sibling like 'toolkit_info' by focusing specifically on versions, though it does not explicitly mention that distinction.

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

Usage Guidelines3/5

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

The description implies usage via its clear purpose but provides no explicit guidance on when to use it versus alternatives, such as 'toolkit_info'. It lacks context about typical use cases or exclusions, making it adequate but not proactive.

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

toolkit_infoA
Read-onlyIdempotent
Inspect

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

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Behavior4/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, destructiveHint=false, so safety is clear. The description adds specificity about what 'state' includes (connection status, account lists, catalog tool counts), going beyond the annotations. There is no contradiction.

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

Conciseness5/5

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

One sentence, front-loaded with 'Returns the current toolkit state' and then enumerates the components. No fluff, every phrase adds value.

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

Completeness4/5

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

The tool is simple with no parameters and no output schema. The description covers what is returned (installed MCPs, connection status, connected accounts, catalog tool count). Annotations confirm read-only nature. This is sufficient for a basic info tool, though it could mention whether any of these values could be empty or have special states.

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

Parameters4/5

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

No parameters exist (0 required, 0 optional). Baseline for 0 params is 4. The description sufficiently explains the output, so no gaps.

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

Purpose5/5

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

The description clearly states the tool's function: 'Returns the current toolkit state' and enumerates specific components (installed MCPs, connection status, accounts, catalog tool counts). This distinguishes it from siblings like authenticate/connect (which perform actions) and show_version (which shows version info).

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

Usage Guidelines4/5

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

The description implies use cases: when you need an overview of the toolkit's installed/connected components. It doesn't explicitly state exclusions or alternatives, but it's unambiguous that this is for retrieving state, not for changing it. Sibling names (authenticate, connect) suggest different purposes, so no confusion.

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

Discussions

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

Related MCP Servers

  • A
    license
    -
    quality
    C
    maintenance
    Provides a read-only MCP tool to query IPVA (vehicle tax) information from the official Ceará state revenue service (SEFAZ) via prepaid credits.
    MIT
  • A
    license
    -
    quality
    C
    maintenance
    A hosted read-only MCP server that enables querying IPVA (vehicle property tax) information from the official SEFAZ Bahia source, with prepaid credit-based usage and no platform credentials.
    MIT

View all MCP Servers

Try in Browser

Your Connectors

Sign in to create a connector for this server.