Skip to main content
Glama
clarkstamina-max

Kommo CRM MCP Server

get_catalog_elements

Fetch products or items stored in a specific catalog, using optional text search and pagination. Provide client slug and catalog ID to retrieve the list.

Instructions

Retorna a lista de itens/produtos (elements) que estão salvos dentro de um catálogo. Possui campo de busca textual.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pageNoPágina de resultados (padrão: 1)
limitNoQuantidade por página (padrão: 50, máx: 250)
queryNoBusca textual no nome do produto (opcional)
catalog_idYesID do catálogo onde os elementos estão
client_slugYesIdentificador do cliente (slug)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

C2.9/5.0
Behavior2/5

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

No annotations are provided, so the description must carry the behavioral disclosure burden. It mentions a return value and a textual search field, but it does not disclose pagination behavior, error conditions, or explicit read-only semantics beyond the verb 'Retorna'.

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 one concise, focused sentence with the main purpose front-loaded and no filler. It is well structured for its length, though it omits useful context that could make it more informative.

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

Completeness3/5

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

For a simple list retrieval tool with fully documented parameters, the description plus schema is minimally viable. However, with no annotations, no output schema, and no sibling disambiguation, the agent is left without enough behavioral or selection context for confident autonomous use.

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 description coverage is 100% and all five parameters are documented in the input schema. The description's mention of a search field merely echoes the query parameter description and adds no new semantic value, so the baseline of 3 applies.

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 verb ('Retorna') and the resource ('lista de itens/produtos... dentro de um catálogo'), so an agent can tell this is about retrieving catalog elements. However, it does not explicitly differentiate from sibling tools like get_catalog_by_id or create_catalog_elements, so the distinction remains implicit.

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?

There is no when-to-use guidance, no exclusions, and no mention of how this compares to sibling tools. The description simply states what the tool returns, forcing the agent to infer usage context from the tool name and sibling set.

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