Skip to main content
Glama

Consulta Veicular Nacional

authenticate

Idempotent

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.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
tokenNo

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observed

TDQS

A3.9/5.0
Behavior4/5

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

Annotations already declare idempotent, non-read-only, non-destructive. The description adds context about permanent vs session-only behavior and link retrieval, which goes beyond annotations. No contradictions.

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

Conciseness3/5

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

The description is approximately three sentences but contains a long, run-on middle sentence. Information is useful but could be more tightly structured; some redundancy exists (e.g., 'paste it here').

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 simple single-parameter tool, the description covers the main behavior, modes, and parameter usage. It lacks explicit return value details, but no output schema exists and the behavior is sufficiently implied.

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?

Schema has one optional token parameter with no description (0% coverage). The description explains the token parameter semantics: call with {token} for session login, or no args to get the link, effectively documenting both states. It doesn't detail token format but compensates adequately.

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

Purpose4/5

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

The description clearly states the tool authenticates to MCP.AI for IDE agents, describing the login flow (browser, token copy) and two usage modes. However, it does not explicitly differentiate from the 'connect' sibling, so it stops short of full distinction.

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 gives explicit guidance for two scenarios: using a config header for permanent connection versus pasting a token for session-only login, and no-args to get a link. It lacks explicit when-not-to-use alternatives to siblings, but provides clear context.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A3.6/5.0
Disambiguation2/5

Several platform-management tools overlap in purpose: authenticate and connect both deal with connection state, while show_version and toolkit_info both return platform status. The marketplace tool is an overloaded catch-all that handles searching, invoking, installing, and billing, making it unclear when to use it versus the other tools.

Naming Consistency2/5

Naming conventions are mixed: some tools follow verb_noun patterns (authenticate, connect, report_bug, show_version), while others are bare nouns (marketplace, toolkit_info). Additionally, the only domain-specific tool uses Portuguese (veiculo_nacional_consultar) while the rest use English, creating a language inconsistency.

Tool Count2/5

The server is named 'Consulta Veicular Nacional' and appears focused on vehicle lookup, yet only 1 of 7 tools actually performs that function. The other 6 are generic platform utilities unrelated to the stated purpose, making the tool count feel bloated and off-target for the server's apparent scope.

Completeness4/5

For the core domain of vehicle consultation, the single tool veiculo_nacional_consultar provides the essential lookup-by-plate capability with no obvious missing operations. Since it is a read-only public data consultation, CRUD coverage is unnecessary, and the vehicle-related surface appears complete. The extra platform tools do not fill any domain-specific gap.