Skip to main content
Glama
clarkstamina-max

Kommo CRM MCP Server

create_pipeline_stage

Add a new stage to an existing Kommo sales pipeline by specifying pipeline ID, stage name, order, and color. Organize custom sales stages to match your workflow.

Instructions

Cria uma nova etapa (status) dentro de um funil de vendas existente.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYesNome da etapa (ex: Em negociação)
sortNoOrdem da etapa (ex: 10, 20, 30)
colorNoCor da etapa em HEX (ex: #ffff99)
client_slugYesIdentificador do cliente (slug)
pipeline_idYesID do funil onde a etapa será criada

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

B3.4/5.0
Behavior2/5

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

With no annotations, the description carries the full burden of behavioral disclosure, but it only says the tool creates a stage. It does not mention permissions, side effects, uniqueness constraints, default ordering/color behavior, or failure modes.

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?

The description is a single efficient sentence that states the core action and target without filler. It is front-loaded and easy for an agent to parse.

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 create operation with five parameters, no annotations, and no output schema, this minimal description is not enough. The agent is left without expectations about required pipeline existence, defaults, the response, or confirmation of success.

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?

All five parameters are fully documented in the schema (100% coverage), so the description does not need to explain them. The description adds no parameter-specific meaning, but the schema already covers this dimension adequately.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb ('Cria' – creates) and names the resource ('nova etapa (status) dentro de um funil de vendas existente'). This clearly distinguishes it from sibling tools like update_pipeline_stage and delete_pipeline_stage.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

It establishes the prerequisite that the pipeline must already exist ('existente'), which gives some context for when to call it. However, it does not explicitly name alternatives or state when not to use this tool versus update_pipeline_stage.

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