Skip to main content
Glama

bx24_crm_calllists

Manage Bitrix24 CRM call lists: create, retrieve, list, delete, start dialing, and check execution status for outbound campaigns.

Instructions

Bitrix24 CRM call lists (списки обзвона): create, list, get, delete, start, status. Methods crm.calllist.* (REST 1.0 + 3.0). RU/EN: список обзвона, обзвон, прозвон / call list, cold call list, dial list.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idNoCRM call list ID
orderNoOrder object (e.g. { 'ID': 'DESC' })
startNoPagination offset (number of records to skip)
actionYesOperation to perform: - "add": Create a call list - "get": Get a call list by ID - "list": List call lists - "delete": Delete a call list (destructive) - "start": Start dialing a call list - "status": Get call list execution status
fieldsNoCall list fields: NAME, ENTITY_TYPE (LEAD/CONTACT), ...
filterNoFilter object (e.g. { '>OPPORTUNITY': 10000, 'STAGE_ID': 'WON' })
selectNoArray of field names to return (projection)
confirmNoSet to true to confirm destructive actions when BX24_CONFIRM_DESTRUCTIVE is enabled.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.4.0

TDQS

B3.1/5.0
Behavior2/5

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

No annotations are provided, so the description must disclose behavior itself. It only names operations and REST versions; it does not explain side effects, destructive outcomes, permission needs, or behavior of 'start' and 'status' beyond their names. The destructive nature of delete appears only in the schema, not the description.

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 compact and front-loaded with the core resource and operations. The RU/EN synonym list is useful for multilingual lookup and does not add meaningful bloat. It is appropriately sized for a multi-action tool though it lacks depth.

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?

Although the schema is rich and covers 100% of parameters, the description itself does not explain per-action required fields, expected responses, or operational details for a tool that multiplexes six distinct actions. With no output schema and no annotations, an agent is left without enough context to confidently invoke actions like add, start, or status.

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 description coverage is 100%, so the parameter descriptions already document id, order, start, action, fields, filter, select, and confirm. The tool description adds no parameter-level meaning, but the schema carries the burden, so the baseline of 3 is appropriate.

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 names a specific resource (Bitrix24 CRM call lists) and enumerates the concrete operations: create, list, get, delete, start, status. It also identifies the underlying REST method family crm.calllist.*, making it clearly distinguishable from sibling CRM tools.

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 lists operations but provides no guidance on when to choose this tool over alternatives such as bx24_call or bx24_telephony. It does not state prerequisites, exclusions, or scenarios where a different tool would be more appropriate.

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