Skip to main content
Glama

bling_list_contatos

Read-onlyIdempotent

Lista contatos (clientes/fornecedores) (GET /contatos). Paginado. Filtros opcionais: pesquisa, idTipoContato, numeroDocumento (CNPJ/CPF), idVendedor, uf.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
ufNo
limiteNo
paginaNo
accountNo
pesquisaNo
idVendedorNo
idTipoContatoNo
numeroDocumentoNo

Schema Changelog

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

  1. First observed

TDQS

B3.4/5.0
Behavior3/5

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

Annotations already declare readOnlyHint true and idempotentHint true, so the safety profile is covered. The description adds value by disclosing the HTTP method (GET), pagination behavior, and optional filter parameters. However, it does not elaborate on rate limits, response size limits, or any side effects. With annotations present, this moderate addition is acceptable.

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, well-structured sentence. It front-loads the core purpose ('Lista contatos') and HTTP method, then lists key details (pagination, filters). Every clause adds value, with no unnecessary words or redundancy.

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?

The tool has 8 optional parameters, pagination, and no output schema. The description covers input semantics partially but does not describe the return format, default pagination values, or response structure. For a list tool, knowing what fields are returned and how pagination works is important, and this is missing.

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 names several filters (pesquisa, idTipoContato, numeroDocumento with CNPJ/CPF hint, idVendedor, uf), adding meaning to these parameters. However, it omits three parameters (limite, pagina, account), leaving them undocumented. The description provides partial but not complete parameter semantics.

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 lists contacts (clientes/fornecedores) via GET /contatos, indicating it is a collection retrieval operation. It distinguishes itself from the sibling 'bling_get_contato' (single contact retrieval) by listing optional filters and noting pagination, making the purpose specific and unambiguous.

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

Usage Guidelines2/5

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

The description does not provide explicit guidance on when to use this tool versus alternatives like 'bling_get_contato'. It only states the tool lists contacts with pagination and filters, but does not explain scenarios where this tool is appropriate (e.g., batch queries) or when a different tool should be chosen. No negative conditions or prerequisites are mentioned.

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

Each tool has a clearly distinct purpose: get/list for specific Bling entities (contacts, NFEs, sales orders, products, etc.) and separate platform tools (authenticate, marketplace, etc.). No overlapping functionality.

Naming Consistency4/5

Bling tools follow a consistent 'bling_verb_noun' pattern (e.g., bling_get_contato, bling_list_produtos), while platform tools use simple English names (authenticate, marketplace). The deviation is minor and explainable by the two distinct categories.

Tool Count4/5

22 tools is slightly above the ideal 3-15 range for a single server, but the number is justified by the comprehensive coverage of Bling entities and additional platform utilities. Not excessive.

Completeness2/5

The Bling tools are read-only (list/get only), lacking any create, update, or delete operations. This is a significant gap for a business management integration, limiting the agent's ability to perform full data lifecycle operations.