Skip to main content
Glama
clarkstamina-max

Kommo CRM MCP Server

get_companies

Fetch paginated company lists from Kommo CRM, filtered by company name and scoped to a client account using the client slug.

Instructions

Busca uma lista de empresas cadastradas no CRM.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pageNo
limitNo
queryNoTermo de busca (nome da empresa)
client_slugYesIdentificador do cliente (slug)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

C2.7/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full burden of behavioral disclosure. It states that the tool searches for a list, but it does not disclose pagination behavior, the need for client_slug, whether results are read-only, or any other operational traits.

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 a single, efficient sentence with no filler words. It is front-loaded with the main action, though it could be slightly more informative without losing conciseness.

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?

For a list tool with no output schema and no annotations, the description is too thin. It does not mention pagination defaults, the required client_slug, what fields are returned, or how this list differs from similar entities like contacts or leads.

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?

Schema description coverage is 50%: query and client_slug have descriptions, while page and limit do not. The tool description does not explain the pagination parameters or how query relates to filtering, so it fails to compensate for the undocumented parameters.

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 action and resource: 'Busca uma lista de empresas cadastradas no CRM' (searches for a list of companies registered in the CRM). This makes the tool's purpose understandable, though it does not explicitly differentiate it from siblings like get_contacts or get_leads.

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 guidance on when to use this tool versus alternatives such as get_contacts, get_leads, or create_company. The description provides no context about use cases, exclusions, or prerequisites beyond simply listing companies.

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