Skip to main content
Glama
clarkstamina-max

Kommo CRM MCP Server

create_company

Create a company record in the CRM using a client slug, name, and optional custom fields to organize account data.

Instructions

Cria uma nova empresa no CRM.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYesNome da empresa
client_slugYesIdentificador do cliente (slug)
custom_fields_valuesNoArray de campos customizados

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

B3.1/5.0
Behavior2/5

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

Annotations are absent, so the description must carry the full transparency burden. It only states the mutation ('cria') and adds no detail on side effects, permissions, duplicate handling, or response behavior.

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?

A single concise sentence with no filler. The core action is front-loaded and appropriately sized for a simple create operation.

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?

The tool is simple and the schema fully covers parameters, so the description is minimally viable. However, it omits what the call returns, whether client_slug must reference an existing client, and how custom_fields_values should be structured.

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 100%, so the schema already documents name, client_slug, and custom_fields_values. The description adds no parameter semantics beyond what the schema provides.

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 uses a specific verb ('cria') and resource ('nova empresa no CRM'), clearly distinguishing it from siblings like update_company and get_companies. It does not explicitly name alternatives, but the core purpose is 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?

No guidance is provided about when to choose create_company over other create tools like create_lead or create_contact. Prerequisites such as requiring a valid client_slug are also not mentioned.

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