Skip to main content
Glama

advbox_get_customer

Read-onlyIdempotent

Busca os dados completos de um contato por ID.

Bulk support: accepts ids for batched execution.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYes
idsNo
queryNo

Schema Changelog

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

  1. First observed

TDQS

A3.7/5.0
Behavior4/5

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 disclosing bulk execution capability ('accepts ids for batched execution'), which is not captured in annotations and is useful for the agent. It does not contradict 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 extremely concise: two sentences, front-loaded with the main purpose and then the bulk note. Every word earns its place, with no redundancy or filler. Ideal structure for quick parsing.

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

Completeness2/5

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

Despite being a get-by-ID tool, the presence of a 'query' parameter adds complexity that the description does not address. There is no output schema, so the agent does not know what 'dados completos' includes. The bulk support note lacks details (e.g., limits, format of ids). The description is too sparse for a tool with three parameters including an object.

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?

With 0% schema description coverage, the description must compensate for the parameters. It partially explains 'id' (single lookup) and 'ids' (bulk), but completely ignores the 'query' object parameter, which is a significant gap. The agent cannot infer what 'query' expects or how it relates to the other parameters.

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 retrieves complete contact data by ID, with a specific verb ('Busca') and resource ('dados completos de um contato por ID'). It distinguishes itself from sibling tools like advbox_list_customers (which likely lists many) and advbox_customers_birthdays, making its purpose unambiguous.

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 for fetching a contact by ID, and the mention of bulk support suggests using it when multiple IDs are available. However, it does not explicitly state when to prefer this over alternatives like advbox_list_customers or exclude cases (e.g., when only partial data is needed). Guidance is present but not fully articulated.

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

B3.4/5.0
Disambiguation5/5

The advbox_* tools are clearly distinct by resource (customer, lawsuit, transaction, post, movement) and action (create, get, list, update). Overlapping tools like lawsuit_history, lawsuit_movements, and last_movements have clear scoping in descriptions. The platform tools (authenticate, connect, marketplace) are separate and well-defined.

Naming Consistency4/5

The advbox_* tools follow a consistent verb_noun pattern (create_customer, get_lawsuit, list_transactions). The non-advbox tools (authenticate, connect, marketplace) use different naming but are auxiliary and have clear names. Minor deviation but overall predictable.

Tool Count3/5

With 26 tools, the set is on the heavy side, but the legal practice domain is broad, covering customers, lawsuits, transactions, posts, and movements, plus platform management tools. Each tool has a defined role, though some could be consolidated (e.g., the multiple movement-related list tools).

Completeness3/5

Core workflows for customers, lawsuits, and transactions are covered with create/get/list/update, but there are missing operations: no update_customer, no deletes for any resource, no get_post or update_post despite list and create. The settings tool helps discover IDs, but the lifecycle is incomplete.