Skip to main content
Glama
clarkstamina-max

Kommo CRM MCP Server

get_roles

Retrieve all access profiles (roles) from a Kommo account to find the role_id for a Manager or Salesperson.

Instructions

Retorna todos os perfis de acesso (Roles) da conta. Use para descobrir qual o 'role_id' de um 'Gerente' ou 'Vendedor'.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
client_slugYesIdentificador do cliente (slug)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A4/5.0
Behavior3/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It implies a read-only listing operation with no side effects, but does not mention output shape, pagination, or permissions. Adequate for a simple list tool, but thin.

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?

Two concise sentences with the primary behavior front-loaded and the use case immediately after. No wasted words.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple one-parameter list tool with no output schema, the description is sufficient: it states what is returned and why an agent might need it. It could include return-value details, but these are not critical here.

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 client_slug is already fully documented. The description adds only the contextual notion of 'da conta' (of the account), which reinforces scope without meaningfully expanding on the parameter semantics.

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 clearly states the action ('Retorna todos os perfis de acesso (Roles) da conta') and the exact resource. It distinguishes itself from sibling get_role_by_id by emphasizing 'todos' (all) roles.

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

Usage Guidelines4/5

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

Provides an explicit use case: 'Use para descobrir qual o role_id de um Gerente ou Vendedor.' This tells an agent when to call the tool, even though it does not explicitly mention get_role_by_id as an alternative.

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