Skip to main content
Glama

GestãoClick

gestaoclick_fornecedores_create

Fornecedores: Cadastrar (POST /api/fornecedores). [write, altera dados]

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
bodyNo
accountNo

Schema Changelog

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

  1. First observed

TDQS

C2.9/5.0
Behavior2/5

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

The description's '[write, altera dados]' tag merely restates the annotation readOnlyHint=false and adds no new behavioral context. It does not disclose side effects, authentication needs, or response behavior beyond what annotations already provide.

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 extremely short and front-loaded with the main purpose. However, the '[write, altera dados]' element is redundant given the annotations, so it does not fully earn its place.

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

Completeness1/5

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

For a create operation with an undocumented body and account parameter, the description is critically incomplete. No output schema exists to compensate, and the agent lacks essential information to invoke the tool correctly.

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

Parameters1/5

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

The schema's two parameters (body and account) have no descriptions and 0% coverage. The description offers no explanation of what values or format these parameters require, leaving the agent unable to construct a valid request body.

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 action 'Cadastrar' (create/register) for the resource 'Fornecedores' (suppliers) and gives the HTTP POST endpoint. This specific verb+resource combination distinguishes it from sibling tools like get, list, update, and delete.

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 this tool is for creating suppliers via the verb 'Cadastrar' and POST method, but it does not explicitly state when to use it versus alternatives, nor provide exclusions or conditions. Usage guidance is only implicit.

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

C2.9/5.0
Disambiguation4/5

Most tools are clearly separated by resource and action (e.g., clientes_create vs. produtos_create), and the CRUD verbs are distinct. However, a few non-CRUD actions like cancelar_create and emitir_create carry a misleading '_create' suffix, and the connection tools (connect, list_accounts, toolkit_info) have overlapping concerns.

Naming Consistency3/5

The dominant pattern is gestaoclick_{resource}_{verb}, which is predictable for the large CRUD set. But exceptions like gerar_parcelas_create, cancelar_create, and emitir_create append '_create' to non-creation actions, and standalone tools (authenticate, connect, marketplace, report_bug, show_version) do not follow the resource-based convention at all.

Tool Count2/5

133 tools is far beyond the 'too many' threshold and will heavily burden an agent's tool-selection process. While the set may reflect a large ERP API, the sheer volume makes the server unwieldy and poorly scoped for typical agent use.

Completeness4/5

Core entities (clientes, produtos, vendas, compras, orcamentos, ordens_servicos, notas fiscais, etc.) have full CRUD plus important domain actions like emitir, cancelar, and gerar_parcelas. Minor gaps exist: many reference/lookup entities are list-only, and some lifecycle actions for those reference tables are missing, but overall the main workflows are covered.