Skip to main content
Glama

Conselho Federal de Medicina: Cadastro

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

A4.1/5.0
Behavior4/5

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

Annotations indicate idempotentHint=true, readOnlyHint=false, destructiveHint=false. The description adds that the config-header approach gives a 'permanent, non-expiring connection' while pasting a token is 'session-only', and that no-args returns a link. This discloses side-effect and persistence behavior beyond what annotations convey. It doesn't contradict too few details to impact the score.

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 a single run-on sentence with multiple instructions and a trailing colon, making it less scannable than ideal. It packs several ideas (IDE mention, browser flow, config path, session path, call syntax). It is fairly compact but could be restructured into bullet points or shorter sentences for better readability. Still, it is not bloated enough to drop below a 3.

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 an authentication tool with no output schema and basic parameters, the description covers both authentication modes, explains the session vs permanent distinction, and gives the exact invocation contract. It omits details like error handling or logout procedures, but such information may be outside the tool's current scope. Given the tool's simplicity, this is reasonably complete.

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 0% schema coverage and one optional parameter, the description fully explains 'token': 'call with { token: "<jwt>" } after the user pastes' and distinguishes the no-args case to obtain the login link. This compensates for the schema's silent field, adding meaningful semantics. A small deduction for not elaborating the token's format JWT can be inferred.

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 handles authentication ('log in in the browser, copy the access token') and provides two distinct usage modes (permanent via config header or session-only via token). While the verb+object are clear, it slightly obscures purpose by mixing instructions for IDE agents with end-user workflow. It does not explicitly contrast with the sibling 'connect' tool, but the auth role is unmistakable.

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 explicitly offers alternatives: 'Best: add it to this server's config ...' versus 'Or paste it here for a session-only login', and specifies exact call patterns: 'call with { token: "<jwt>" } ... or with no args to get the link.' This gives an agent direct guidance on when to use which approach, meeting the rubric's 'when/when-not/alternatives' at the highest level.

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.9/5.0
Disambiguation4/5

The tools are mostly distinct: authenticate, connect, and toolkit_info handle platform/connection state; marketplace covers discovery/invocation; cfm_cadastro_consultar is the only domain-specific data tool. One potential ambiguity: `connect` and `toolkit_info` both report connection status, but `connect` focuses on URLs and missing credentials while `toolkit_info` focuses on installed MCP state, so it's clear enough.

Naming Consistency3/5

Naming is mixed: some tools use clear verbs (`authenticate`, `connect`, `report_bug`, `show_version`, `toolkit_info`), but three use domain-specific or inconsistent forms (`cfm_cadastro_consultar` mixes abbreviation and verb, and `toolkit_info`/`show_version` use noun phrases vs verbs). There's no consistent verb_noun pattern across the set, though the names are readable and mostly self-explanatory.

Tool Count5/5

With 7 tools, the count is well-scoped for a platform-oriented server that includes connection management, a catalog/invocation hub, feedback, version info, and one domain-specific query tool. Each tool has a distinct function and the count feels intentional, not bloated.

Completeness3/5

For the apparent purpose — providing access to the CFM cadastro query plus platform plumbing — the surface covers authentication, connection status, the domain query, and a toolkit overview. However, there's no CRUD/lifecycle for the domain query (e.g., no way to list past queries, manage credits, or handle errors) beyond the single consultar tool, and the platform tools (marketplace) handle most management. The gaps are workable but noticeable.