Skip to main content
Glama
clarkstamina-max

Kommo CRM MCP Server

update_company

Update existing company details in Kommo CRM, including name and custom fields, for a specified client account using company ID and client slug.

Instructions

Atualiza uma empresa existente.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesID da empresa
nameNo
client_slugYesIdentificador do cliente (slug)
custom_fields_valuesNo

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?

There are no annotations, so the description carries the full burden of behavioral disclosure. It only says 'updates an existing company' without explaining whether the update is partial or full replacement, which fields are affected, whether it is reversible, or what response the agent should expect.

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, front-loaded sentence with no filler or redundancy. However, it is quite sparse given the tool's four parameters and absence of annotations, so it is concise but near the edge of under-specification.

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?

With no annotations, no output schema, and four parameters, the description does not provide enough context for an agent to call the tool confidently. It omits required identifier semantics, updatable field behavior, and return value expectations.

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%, covering only id and client_slug. The description adds nothing about the parameters; name and custom_fields_values remain undocumented in both schema and description. The description does not compensate for the missing parameter context.

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 operation ('Atualiza' = updates) and the resource ('uma empresa existente' = an existing company). It distinguishes the tool from create_company by emphasizing 'existing', though it does not name the sibling explicitly.

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 given about when to use this tool versus alternatives such as create_company or get_companies. The word 'existente' implies the company must already exist, but the description does not state prerequisites, exclusions, or typical use cases.

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