Skip to main content
Glama
clarkstamina-max

Kommo CRM MCP Server

delete_custom_field_group

Delete a custom field group from Kommo CRM by providing its ID, client slug, and entity type. Manage field groups across leads, contacts, companies, or catalogs.

Instructions

Exclui um grupo de campos.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesID do grupo de campos a ser excluído
client_slugYesIdentificador do cliente (slug)
entity_typeNoleads

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 carries the full burden of explaining behavioral traits. It discloses only that a field group is deleted, but not whether deletion is irreversible, cascades to contained fields, or requires special permissions. This is minimal behavioral transparency for a destructive operation.

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 redundant wording. It is concise, though so brief that it leaves behavioral and usage details unaddressed.

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 and no output schema, the description is too sparse for a destructive tool. It fails to mention side effects, restrictions, return values, or the significance of entity_type. An agent has only the input schema to work with, which is insufficient for confident invocation.

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 descriptions already cover id and client_slug, and entity_type has an enum and default value. The tool description adds little semantic value beyond naming the resource type, but the schema provides enough baseline meaning for the required parameters. The role of entity_type in deletion remains unexplained.

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 states a specific verb ('Exclui') and resource ('um grupo de campos'), clearly identifying this as a deletion operation on a field group. It is distinguishable from sibling delete tools like delete_custom_field, though it does not explicitly say 'custom' field group.

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 gives no guidance on when to use this tool versus alternatives, such as delete_custom_field, nor does it mention any conditions or prerequisites for deleting a field group. An agent must infer usage entirely from the tool name and schema.

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